【View Controller】Configuring the Initial View Controller at Launch

If you define a main storyboard in your project, iOS automatically does a lot of work for you to set up your app.When your app calls theUIApplicationMainfunction, iOS performs the following actions:

  1. It instantiates the app delegate based on the class name you passed into theUIApplicationMainfunction.

  2. It creates a new window attached to the main screen.

  3. If your app delegate implements awindowproperty, iOS sets this property to the new window.

  4. It loads the main storyboard referenced in the app’s information property list file.

  5. It instantiates the main storyboard’s initial view controller.

  6. It sets the window’srootViewControllerproperty to the new view controller.

  7. It calls the app delegate’sapplication:didFinishLaunchingWithOptions:method. Your appdelegate is expected to configure the initial view controller (and its children, if it is a container viewcontroller).

  8. It calls the window’smakeKeyAndVisiblemethod to display the window. 



    The app delegate configures the controller

    <span style="font-size:18px;">- (BOOL)application:(UIApplication *)application
      didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
      {
    UINavigationController *navigationController = (UINavigationController*)
      self.window.rootViewController;
          BirdsMasterViewController * firstViewController = [[navigationController
      viewControllers] objectAtIndex:0];
          BirdSightingDataController *dataController = [[BirdSightingDataController
      alloc] init];
          firstViewController.dataController = dataController;
    return YES; }
    </span>



    Creating the window when a main storyboard is not being used 


    <span style="font-size:18px;">- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
        UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard"
    bundle:nil];
        MainViewController *mainViewController = [storyboard
    instantiateInitialViewController];
        self.window.rootViewController = mainViewController;
        // Code to configure the view controller goes here.
        [self.window makeKeyAndVisible];
    return YES; }</span>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值