i did a simple navigationbased app. it works on iphone very well, but it doesnt work on ipad 3.2 simulator and device.
in applicationdidfinish event;
MainViewController *viewController = [[MainViewController alloc] initWithNibName:@"MainView" bundle:nil];
[self.navigationController pushViewController:viewController animated:NO];
self.window.rootViewController = self.navigationController;
[viewController release];
it says for this line:
self.window.rootViewController = self.navigationController;
[UIWindow setRootViewController:]: unrecognized selector sent to instance 0x4c22dd0
but it works on ipad 4.2 and over.
how can i solve it for ipad 3.2?