TabBarController的定制
2016-03-27 本文已影响94人
hoggenWang
大多数时候,我们做项目的时候因为UI设计的需要或者美观的需要,再或者显示我们公司或项目的与众不同,我们会对TabBarController做一些定制;当然为了方便快捷的定制,我们一般会使用xib来实现;
这里具体怎么画是个人的喜好,我在这里只写相关代码部分。
第一步,先要有一个继承于UITabBarController的YLMyTabBarController(包含xib)
然后我们定制好视图后就进入下一步,代码实现部分
- (void)viewDidLoad {
[super viewDidLoad];
self.tabBar.hidden=YES;//把视图原有的tabbar藏起来
//===================================================
//第一个参数是xib文件的名字,第二个参数加载的视图的所有者是;第三个参数是相关的数据;
//返回的是一个数组:里面装的是从xib文件中加载的所有的视图(可能有做了很多视图)
NSArray *array=[[NSBundle mainBundle]loadNibNamed:@"YLMyTabBarview" owner:self options:nil];
tabBarView=[array firstObject];
tabBarView.frame=CGRectMake(0, self.view.bounds.size.height-tabBarView.bounds.size.height, self.view.bounds.size.width, tabBarView.bounds.size.height);
//将自己制作的view取出来加载到视图上-
[self.view addSubview:tabBarView];
//给自己视图上的button绑定回调
for (UIView *temp in tabBarView.subviews) {
if (temp.tag>=200&&temp.tag<=203) {
UIButton *tempButton=(id)temp;
[tempButton addTarget:self action:@selector(tabButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
}
}
}
回调和父类方法实现
-(void)tabButtonClicked:(UIButton*)sender{
self.selectedIndex=sender.tag-200;
for (UIView *temp in tabBarView.subviews) {
if (temp.tag>=200&&temp.tag<=203) {
UIButton *tempButton=(id)temp;
tempButton.selected=NO;
}
}
}
-(void)setSelectedIndex:(NSUInteger)selectedIndex{
//重写父类方法是
[super setSelectedIndex:selectedIndex];
}
具体实现
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//自定义的
UITabBarController *tab=[[YLMyTabBarController alloc]init];
tab.delegate=self;
//
NSArray *colors=@[[UIColor blueColor],[UIColor orangeColor],[UIColor purpleColor],[UIColor greenColor]];
//当分栏超过5栏后会建立一个表格视图,最好不要超过5栏
NSMutableArray *vcs=[NSMutableArray array];
for (int i=0; i<colors.count; i++) {
YLViewController *testVC=[[YLViewController alloc]init];
testVC.title=[NSString stringWithFormat:@"第%d栏",i+1];
testVC.bgColor=colors[i];
//加导航
UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:testVC];
[vcs addObject:nav];
}
//
tab.viewControllers=vcs;
_window.rootViewController=tab;
return YES;
}
}