框架搭建_纯代码

目录:
1、利用ViewController中间过渡
2、直接设置UITabBarController的数组

比较:相对来说第2中方式较方便,设置内容、标题等比较清晰明确,第1中方式中设置标题等内容时容易搞混,相对第2中方式没有较大的优势。

1、利用ViewController中间过渡

AppDelegate中代码设置

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    ViewController *vc = [[ViewController alloc] init];
    self.window.rootViewController = vc;
    
    return YES;
}

ViewController中代码设置

    //初始化要使用的三个VC
    FirstVc *first = [[FirstVc alloc] init];
    SecondVc *second = [[SecondVc alloc] init];
    ThirdVc *third = [[ThirdVc alloc] init];
    
    //初始化三个nav
    UINavigationController *firstNav = [[UINavigationController alloc] initWithRootViewController:first];
    firstNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"111" image:nil tag:1];
    
    UINavigationController *secondNav = [[UINavigationController alloc] initWithRootViewController:second];
    secondNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"" image:nil tag:1];

    UINavigationController *thirdNav = [[UINavigationController alloc] initWithRootViewController:third];
    thirdNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"333" image:nil tag:1];

    //初始化UITabBarController
    self.tabBarCont = [[UITabBarController alloc] init];
    self.tabBarCont.viewControllers = @[firstNav,secondNav,thirdNav];
    
    self.tabBarCont.selectedIndex = 0;
    self.tabBarCont.delegate = self;
    self.tabBarCont.view.frame = self.view.frame;
    
    [self.view addSubview:self.tabBarCont.view];

各个VC中的设置

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
}

- (void)viewWillAppear:(BOOL)animated
{
    self.title = @"first";//此设置改变nav的标题和底部item的标题
    self.navigationController.title = @"111";//item标题
}

2、直接设置UITabBarController的数组

AppDelegate中设置

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    //初始化
    FirstVc *first = [[FirstVc alloc] init];
    SecondVc *second = [[SecondVc alloc] init];
    ThirdVc *third = [[ThirdVc alloc] init];
    
    //创建标签栏控制器
    tabBarControl = [UITabBarController new];
    
    //放入标签栏中
    tabBarControl.viewControllers = @[first,second,third];
    
    //创建导航栏控制器,并指定他的根视图控制器
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:tabBarControl];
    
    //添加中间的按钮
    //缺点:1、按钮超过bottom的部分点击无响应    2、点击除按钮外的中间部分时也展示中间item的页面
    //3个item是可能范围太大,如果调整item数量,缺点2应该影响不大。
    UIButton *btn = [[UIButton alloc] init];
    btn.backgroundColor = [UIColor redColor];
    [btn setFrame:CGRectMake(130, -12, 60, 60)];
    btn.clipsToBounds = YES;
    btn.layer.cornerRadius = 30;
    [btn addTarget:self action:@selector(clickCenterButton) forControlEvents:UIControlEventTouchUpInside];
    
    [tabBarControl.tabBar addSubview:btn];
    
    //指定应用的跟视图控制器
    self.window.rootViewController = nav;
    
    return YES;
}

各个VC中的设置

- (instancetype)init
{
    self = [super init];
    
    if (self)
    {
        self.title = @"111";//此处的title是item的标题
        
        //设置图标的默认图片和选中后图片
        self.tabBarItem.image = [[UIImage imageNamed:@"tabbar_mainframe@2x"]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        self.tabBarItem.selectedImage = [[UIImage imageNamed:@"tabbar_mainframeHL@2x"]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        
        //未读消息数量(右上角标识)
        [self.tabBarItem setBadgeValue:@"18"];
    }
    
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
}

- (void)viewWillAppear:(BOOL)animated
{
    self.tabBarController.navigationItem.title = @"first";//共同使用一个navigation,要在此方法中设置名称
    
    //设置右边导航按钮
    UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(tapAdd)];

    self.tabBarController.navigationItem.rightBarButtonItem = rightItem;
}

- (void)tapAdd
{
    //此处跳转页面操作
    //或者弹出页面
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容

  • *7月8日上午 N:Block :跟一个函数块差不多,会对里面所有的内容的引用计数+1,想要解决就用__block...
    炙冰阅读 2,480评论 1 14
  • 1.自定义控件 a.继承某个控件 b.重写initWithFrame方法可以设置一些它的属性 c.在layouts...
    圍繞的城阅读 3,374评论 2 4
  • 今天给大家推荐一首我特别喜欢的歌和MV 《其实我们值得幸福》。 这首歌曲的歌词是管启根据杨丞琳与林依晨两人的友谊所...
    邹小芝阅读 3,015评论 9 27
  • 1. js六大数据类型 null并非typeof出来的类型,不过由于null不可再分,所以将其归于基本数据类型之中...
    二狗的小仙女阅读 510评论 0 0
  • 2017-1-29晴 今天早上回天津。东北下雪了,路滑不好走,但车不是很多。一路上,孩子吃吃喝喝,睡觉,我们车上聊...
    心境色彩阅读 200评论 0 0