Xcode 4.5 GMシードを使用してiOS6シミュレーターでアプリを実行すると、このコードがクラッシュします。
if ([[[UIDevice currentDevice] systemVersion] isEqualToString:@"6.0"]) {
XLog(@"hier checken");
self.tabBarController = [[UITabBarController alloc] init];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
}
[...]
self.loginController = [[[LoginController alloc] initWithNibName:@"LoginController_iPhone" bundle:nil] autorelease];
self.loginController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
//this line occurs a crash on iOS 6 (simulator, device not tested)
[self.tabBarController presentViewController:self.loginController
animated:YES
completion:nil];
クラッシュはSIGABRTです。クラッシュに関するこれ以上の情報はありません。
iOS6でこのクラッシュは何が起こっていますか?