Hi, thanks, but this isn't working for me:
My new view appears, but it's really unresponsive. I'm actually loading a view from a nib now rather than creating a UITableViewController derived object, but my setup is still pretty much the same:
[[Director sharedDirector] pause];
ConfigViewController *vw = [[ConfigViewController alloc] initWithNibName:@"Config" bundle:nil];
[[[UIApplication sharedApplication] keyWindow] addSubView:vw.view];
My view just has a UITableView dumped on it and is populated with some dummy data for now, scrolling it or selecting stuff is painfully slow.
If I change the size of my view so that it's not quite screen sized, I can see the FPS counter from my cocos layer underneath, reading something like 3 fps.
I guess I'm just missing something or just not getting how the cocos / UIKit stuff interact. Possibly the [[[UIApplication sharedApplication] keyWindow] addSubView:vw.view] is not the right way to do this - I've not fouind any examples that switch between cocos & UIKit views like this.
Any ideas?