哪种方法适合为 iPhone/iPad 创建通用本机应用程序:
1) 为 iphone 和 iPad 版本创建单独的 NIB 文件并通过检查(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)加载特定版本。
2)获取主屏幕的尺寸并相应地框出视图
CGRect mainWindow = [[UIScreen mainScreen] bounds];
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, mainWindow.size.width, mainWindow.size.height)];
请建议我是否错过了任何其他方法
谢谢,阿杰