ViewWillAppear
自動的に呼び出されることはありません手動で呼び出す必要があります。ViewWillDisappear
よく呼ばれます。
これをどこでデバッグするかわかりません。
問題は、4.1でアプリケーションを作成したためだと思います。このアプリケーションでは、ユーザーがviewWillAppear
明示的に呼び出す必要があります。
viewWillAppear
窓との関係で呼ばれるので、窓へviewController
の出口があるかどうか確認できると思います。
どうすればいいですか?
問題は私の代理人のどこかにあるのではないかと思いました。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[Crashlytics startWithAPIKey:@"a08863b514ef09558ba82fec070cc7468fdbeeae"];
if(getenv("NSZombieEnabled") || getenv("NSAutoreleaseFreedObjectCheckEnabled"))
{
NSLog(@"NSZombieEnabled/NSAutoreleaseFreedObjectCheckEnabled enabled!");
}
[self.window addSubview:self.navController.view]; //This seem to be the problem. I should have specified the viewController and not the view
[self.navController pushViewController:self.MainBadgerApplication animated:YES];
//[cachedProperties singleton].lastAnchor =[cachedProperties currentLocation];
[cachedProperties singleton].currentAnchor=[cachedProperties currentLocation];
self.MainBadgerApplication.selectedIndex=0;
[BNUtilitiesQuick tabBarController:self.MainBadgerApplication didSelectViewController:self.MainBadgerApplication.selectedViewController];
[self.window makeKeyAndVisible];
return YES;
}
[self.window addSubview:self.navController.view]; 問題です。
また、ios5の前に、viewControllerを明示的に呼び出す必要があると聞きました。したがって、ios5とios4用に別のプログラムを作成する必要があります(プログラムに対してviewControllerを2回呼び出すことに危険がないように)