你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> storyboard切換程序進入頁面

storyboard切換程序進入頁面

編輯:關於IOS
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  2.     if([userDefaults objectForKey:@"autoLogIn"] != nil && [userDefaults objectForKey:@"rand_code"] != nil) {
  3.         UIStoryboard *board = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
  4.         //獲取故事板中某個View
  5.         UIViewController *next = [board instantiateViewControllerWithIdentifier:@"mainTabBar"];
  6.         [self.window setRootViewController:next];
  7.         [self.window makeKeyAndVisible];
  8.     }else{
  9.         UIStoryboard *board = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
  10.         //獲取故事板中某個View
  11.         UIViewController *next = [board instantiateViewControllerWithIdentifier:@"mainTabBar"];
  12.         [self.window setRootViewController:next];
  13.         [self.window makeKeyAndVisible];
  14.     }
  15.     return YES;
  16. }
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved