应用程序在 iPhone 设备、iPhone 模拟器上运行良好,但在 iPad 模拟器上测试时它崩溃并且收到的消息是
[UIWindowLayer convertPoint:fromView:]: unrecognized selector sent to instance.
程序在线程 1 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;
}
应用程序委托中的 UIApplication 是否有问题,或者我更改了一些信息中的设置。
知道为什么它在 iPhone 设备、iPhone 模拟器上运行良好时只在 iPad 模拟器上崩溃。
任何线索如何解决这个问题。
感谢帮助。