3

一位用户发送了一封电子邮件,说在启动 ipad 应用程序时,他看到启动画面,然后 statusBar 变得可见,之后只有空白屏幕。所以他不能继续使用应用程序。用户拥有装有 iOS 5.1.1 的 iPad3。我已经测试了所有可能的 iOS 版本和不同的使用场景,但无法重现这种情况。有任何想法吗?

启动代码:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UIApplication sharedApplication] setStatusBarHidden:NO];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];

if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
{
    self.window.rootViewController = padMainNavigationController;
}
else
{
    self.window.rootViewController = self.tabBarController;
}
NSError *sessionError = nil;
[[AVAudioSession sharedInstance] setDelegate:self];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error:&sessionError];

// 2. Changing the default output audio route
UInt32 doChangeDefaultRoute = 1;
AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryDefaultToSpeaker, sizeof(doChangeDefaultRoute), &doChangeDefaultRoute);
[self.window makeKeyAndVisible];
int cacheSizeMemory = 4*1024*1024; // 4MB
int cacheSizeDisk = 60*1024*1024; // 60MB
NSURLCache *sharedCache = [[[NSURLCache alloc] initWithMemoryCapacity:cacheSizeMemory diskCapacity:cacheSizeDisk diskPath:@"nsurlcache"] autorelease];
[NSURLCache setSharedURLCache:sharedCache];

return YES;
}
4

1 回答 1

1

请参阅使用 navigationController的白屏- 它解决了我的问题,类似于 OP 中描述的问题。

于 2013-01-17T04:16:21.563 回答