0

可能重复:
iPad 模拟器上的应用程序崩溃

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

我是否必须对 info.xml 中的设置进行一些更改?

4

0 回答 0