0

在 iPad 上的 iOS 6.XX 版本上,应用程序启动需要 5-6 秒。这在 iOS 5.X 上运行良好。在 iOS 6.XX 中,default.png 文件在屏幕上的停留时间会稍长一些加载时可能出现的问题。

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; UIInterfaceOrientation 方向=[[UIApplication sharedApplication] statusBarOrientation];

if (orientation==UIInterfaceOrientationLandscapeLeft || orientation==UIInterfaceOrientationLandscapeRight)
{                                                         self.viewController=[[EBHomeViewController alloc] initWithNibName:@"EBHomeViewController-LA" bundle:nil] ;
}
else if(orientation==UIInterfaceOrientationPortrait || orientation==UIInterfaceOrientationPortraitUpsideDown)
{
    self.viewController=[[EBHomeViewController alloc] initWithNibName:@"EBHomeViewController-PT" bundle:nil] ;
}

navController = [[UINavigationController alloc] initWithRootViewController:self.viewController];
self.window.rootViewController = navController;
[self.window makeKeyAndVisible];

applicationDidFinishLaunching 中没有繁重的代码。我们安装应用程序并首次打开它/重新启动 iPad 并启动应用程序需要时间。

4

0 回答 0