ログインページでアプリケーションを実現したい。
xibファイルを含むUIViewControllerに基づく個別の認証ページがあります。これは、アプリが読み込まれたときにユーザーが最初に表示する必要があり、MainStoryboard.storyboardにUITabBarControllerに基づくメインアプリケーションがあり、ユーザーはログインに成功した後にリダイレクトする必要があります。
AppDelegate.mで行うログインページでアプリを起動するには
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
NewUserViewController *controller = [[NewUserViewController alloc] init];
self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
ログインに成功した後、NewUserViewControllerからUITabBarControllerに切り替えるにはどうすればよいですか?
私は(NewUserViewController.mで)しようとします
MainTabBarViewController *myViewController = [[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:NULL] instantiateViewControllerWithIdentifier:@"MainTabBarViewController"];
[self.navigationController pushViewController:myViewController animated:YES];
このアプリの別の構造を提供できれば幸いです!
英語でごめんなさい。