zoukankan      html  css  js  c++  java
  • IOS AppDelegate设置Root页面

    1.最简单的只有一个控制器的root页面(不用默认的storyrboard)

    AppDelegate.m

     

    #import "AppDelegate.h"

    #import "KCMainViewController.h"

     

    @interface AppDelegate ()

     

    @end

     

    @implementation AppDelegate

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

        self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen] bounds]];

        KCMainViewController *mainView = [[KCMainViewController alloc]initWithNibName:@"KCMainViewController" bundle:nil];

        _window.rootViewController = mainView;

        [_window makeKeyAndVisible];

        return YES;

    }

    2.用Navigation设置的多个控制器的root页面

    1)AppDelegate.h

     

    #import <UIKit/UIKit.h>

     

    @interface AppDelegate : UIResponder <UIApplicationDelegate>

    @property (strong, nonatomic) UIWindow *window;

    @property (strong, nonatomic) UINavigationController *navigationController;

    @end

     

    2)AppDelegate.m

     (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

        

        self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];

        self.window.backgroundColor = [UIColor whiteColor];

        

        RegisterViewController *masterViewController = [[RegisterViewController alloc]initWithNibName:@"RegisterViewController" bundle:nil];

        _navigationController = [[UINavigationController alloc]initWithRootViewController:masterViewController];

        [_window addSubview:_navigationController.view];

        

        [self.window makeKeyAndVisible];

    }

    这里多说点页面跳转的事情,如果用navigation,就是用代理的navigationController的pushViewController方法把新的controller放到导航的栈里,运用“后进先出”的原理,切换页面。

     

    3.使用TabBar设置Root控制器

     

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

        

        self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

        

        GGTabBarController *tabBar = [[GGTabBarController alloc] init];

        

        TestViewController1 *vc1 = [[TestViewController1 alloc] init];

    //    vc1.tabBarItem.title = @"花时间";??

    //    vc1.tabBarItem.badgeValue = @"12";

        TestViewController2 *vc2 = [[TestViewController2 alloc] init];

        TestViewController3 *vc3 = [[TestViewController3 alloc] init];

        

        

        tabBar.viewControllers = @[vc1, vc2, vc3];

        self.window.rootViewController = tabBar;

        self.window.backgroundColor = [UIColor whiteColor];

        [self.window makeKeyAndVisible];

        

        

        return YES;

    }

     

  • 相关阅读:
    Spring(九)之事件处理
    Spring(八)之基于Java配置
    Spring(七)之基于注解配置
    Spring(六)之自动装配
    Spring(五)之Bean定义继承和依赖注入
    Spring(四)之Bean生命周期、BeanPost处理
    开源 视频会议 收藏
    摄像头拍照录相代码,没摄像头测试,
    什么是ICE (Internet Communications Engine)
    AForge.NET Framework-2.2.5
  • 原文地址:https://www.cnblogs.com/yuyu-2012/p/4821713.html
Copyright © 2011-2022 走看看