App在iPhone设备,iPhone模拟器上工作正常,但在iPad模拟器上测试时崩溃了,消息得到了
[UIWindowLayer convertPoint:fromView:]: unrecognized selector sent to instance.
在thread1 UIApplicationMain上编程收到信号EXC_BAD_ACCESS
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]autorelease];
self.containerViewController = [[[ContainerViewController alloc]init]autorelease];
self.window.rootViewController = self.containerViewController;
[window makeKeyAndVisible];
return YES;
}
app delegate中的UIApplication是否有问题,或者我在info中更改了一些设置。
在iPhone设备,iPhone模拟器上正常运行时,任何想法为什么它只在iPad模拟器上崩溃。
如何解决此问题的任何线索。
感谢您的帮助。