iphone应用程序在iPad模拟器上测试时崩溃了

时间:2012-07-14 20:15:37

标签: iphone nsview

  

可能重复:
  App crash on iPad simulator

[UIStatusBarWindow convertPoint:fromView:]: unrecognized selector sent to class.

当试图在iPad模拟器上测试iPhone应用时,应用程序因上述消息而崩溃。

在ipad模拟器上测试iphone应用程序原因正在通过苹果商店评论指南

iPhone应用程序也必须在iPad上运行,无需修改,iPhone分辨率和2X iPhone 3GS分辨率

- (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;
 }

我是否必须在信息设置中进行一些更改。

0 个答案:

没有答案