概述
我是直接在标题位置添加两个button 加载两个viewcontroller 简单粗暴实现顶部切换卡
UIView *titleView = [[UIView alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.view.bounds)/2-60, 0, 120, 30)];
_tabMeet = [UIButton buttonWithType:UIButtonTypeCustom];
_tabMeet.frame = CGRectMake(0, 0, 40, 30);
[_tabMeet setTitle:@"邂逅" forState:UIControlStateNormal];
[_tabMeet setTitleColor:[UIColor whiteColor]forState:UIControlStateNormal];
[titleView addSubview:_tabMeet];
_tabNearby = [UIButton buttonWithType:UIButtonTypeCustom];
_tabNearby.frame = CGRectMake(80, 0, 40, 30);
[_tabNearby setTitle:@"附近" forState:UIControlStateNormal];
[_tabNearby setTitleColor:[UIColor whiteColor]forState:UIControlStateNormal];
[_tabNearby addTarget:self action:@selector(showNearby:) forControlEvents:UIControlEventTouchUpInside];
[titleView addSubview:_tabNearby];
self.navigationItem.titleView = titleView;
最后
以上就是小巧哈密瓜为你收集整理的iOS开发:导航栏上实现tab--标题位置添加多个button的全部内容,希望文章能够帮你解决iOS开发:导航栏上实现tab--标题位置添加多个button所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复