我的应用程序在iOS4上运行良好,除了有时它显示白屏,特别是在很长一段时间没有使用应用程序之后(我猜它可能会从后台删除,但我已经尝试了),但是,如果我关闭应用程序并再次重新打开它,一切正常。我不知道这是否有任何具体问题。这是一个带标签的普通iPhone应用程序。
这是application:didFinishLaunchingWithOptions:
,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
gpsUpdate=0;
NSLog(@"entro a didFinishLaunch");
if (locationManager == nil ) {
}
if ([launchOptions objectForKey: UIApplicationLaunchOptionsLocationKey] != nil) {
// register for local notification
}
else {
iconBadNumber=0;
[self checkConnection];
[self copyDatabaseIfNeeded];
iconBadNumber=0;
self.alertsArray = [[NSMutableArray alloc] init];
self.searchArray = [[NSMutableArray alloc] init];
[Alertas getAllAlerts];
[window addSubview:tabBarController.view];
}
[tabBarController setDelegate:self];
return YES;
}
答案 0 :(得分:1)
您只在一个条件下将子视图添加为tabBarController.view for window。始终在didFinishLaunchingWithOptions方法内部,您需要将一些视图作为子视图添加到窗口,否则它将显示白色屏幕,因为它是窗口的默认颜色。