イベント内にタッチするボタンがあります。ルートviewControllerを変更するために次のコードを書いている間、警告が表示されます:Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation
- (IBAction)fn_login:(id)sender {
AppDelegate *delegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
UIWindow *window = delegate.window;
rootTabViewController* rootVC = [[[rootTabViewController alloc]init]autorelease];
window.rootViewController = rootVC;
}
rootTabViewController は UITabbarController です。
UITabbarViewController で UINavigationBar を使用する場合、警告は同じです。
UINavigationController *navigationCtrl = [[[UINavigationController alloc] initWithRootViewController:rootVC] autorelease];
window.rootViewController = navigationCtrl;