我使用Xcode 3.2开发了一个 iOS 应用程序,我想发布一个支持更大 iPhone 5 屏幕的应用程序的新版本。
我在应用程序委托中尝试了以下操作:
[window setFrame:[[UIScreen mainScreen] bounds]];
[window addSubview:viewController.view];
[window makeKeyAndVisible];
CGRect screenBounds = [[UIScreen mainScreen] bounds];
NSLog(@"%@",[NSValue valueWithCGRect:screenBounds]);
// NSRect: {{0, 0}, {320, 480}}
如您所见,高度设置为 480pt。如何添加对 iPhone 5 更高屏幕的支持?
谢谢,