0 TabBarItem 是 TabBar 上的item
1 TabBar 是一个UI控件
2 TabBarController 封装了 tabbar 与多个视图控制器的切换
注:TabBarController 大于5个就会有 more(尽量不要出现,太丑了),与more相关的custom,本文都不涉及
TabBarItem
其父类UIBarItem 不讲了
- 基本创建与属性
UITabBarItem *item1 = [[UITabBarItem alloc] initWithTitle:@"111"
image:[UIImage imageNamed:@"tabbar_icon0_normal"]
selectedImage:[UIImage imageNamed:@"tabbar_icon0_selected"]];
item1.badgeValue = @"123";// 提示数字
item1.titlePositionAdjustment = UIOffsetMake(-2, -2);// 文字偏移
TabBar
- 1 基本创建与属性
// 基本配置
UITabBar *tabBar = [[UITabBar alloc] initWithFrame:CGRectMake(10, 100, CGRectGetWidth(self.view.bounds)-20, 44)];
[self.view addSubview:tabBar];
[tabBar setItems:@[item1,item2,item3,item4,item5,item6,item7]];
// 更多属性
tabBar.barStyle = UIBarStyleDefault;// 黑 和 白
tabBar.translucent = YES;// 透明属性
tabBar.delegate = self;
tabBar.tintColor = [UIColor redColor];// 无效了。
tabBar.barTintColor = [UIColor yellowColor];// Bar 的color,设置图片无效
tabBar.selectedImageTintColor = [UIColor greenColor];// 选中图片的 tintColor
// tabBar.selectionIndicatorImage = [UIImage imageNamed:@"navigation_backIcon"];// 默认的选中图片
// tabBar.backgroundImage = [UIImage imageNamed:@"navigation_backIcon"];// 背景图
// tabBar.shadowImage = [UIImage imageNamed:@"navigation_backIcon"];// 上面的1px阴影
// item 定位
// 虽然注释写了使用这种定位,可以使用上面2个属性,实测无效,请告诉
tabBar.itemWidth = 200.;
tabBar.itemSpacing = 10.;
tabBar.itemPositioning = UITabBarItemPositioningCentered;我为啥
```
- 2 代理
这里只写这个,另外几个都是与 more的自定义有关,不想研究了。
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
tabBar.selectedItem.badgeValue = @([tabBar.selectedItem.badgeValue integerValue] +1).stringValue;
tabBar.selectedItem.titlePositionAdjustment = UIOffsetMake(2, 2);
}
## TabBarController
封装了 tabbar 与多个视图控制器的切换
- 1 基本创建与属性
[self setViewControllers:@[] animated:YES];// 设置childViewController
// 所有子控制器
[self.viewControllers enumerateObjectsUsingBlock:^(__kindof UIViewController * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
NSLog(@"%@",obj);
}];
// self.tabBar;// 获取tabBar,主要对这个做处理,
self.delegate = self;
- 2 代理
pragma mark - 一般使用
// 是否可以点击
-
(BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
BOOL isLogin = NO;
// 比如没有登录不能进 B控制器
if (!isLogin && [viewController isKindOfClass:[BViewController class]]) {
NSLog(@"你还没登录,不能看");
return NO;
}return YES;
}
// 点击选中时
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
NSLog(@"%zi",self.selectedIndex);
NSLog(@"%@",self.selectedViewController);
}
pragma mark - 下面的一般不用到
// 更多 开始编辑
- (void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers {
}
// 更多 将要结束编辑
- (void)tabBarController:(UITabBarController *)tabBarController willEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed {
}
// 更多 已经结束编辑
- (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed {
}
// 屏幕旋转是,tabBarController 支持的方向,多选
- (UIInterfaceOrientationMask)tabBarControllerSupportedInterfaceOrientations:(UITabBarController *)tabBarController {
return UIInterfaceOrientationMaskAll;
}
// 子视图指定方向,还跟子控制器有关,比较复杂。
- (UIInterfaceOrientation)tabBarControllerPreferredInterfaceOrientationForPresentation:(UITabBarController *)tabBarController {
return self.selectedViewController.preferredInterfaceOrientationForPresentation;
}
pragma mark - 下面的动画转场,再研究,一时半会儿搞不定
//// 自定义 切换 交互式
//- (nullable id <UIViewControllerInteractiveTransitioning>)tabBarController:(UITabBarController *)tabBarController
// interactionControllerForAnimationController: (id <UIViewControllerAnimatedTransitioning>)animationController {
//}
//// 自定义 切换 动画
//- (nullable id <UIViewControllerAnimatedTransitioning>)tabBarController:(UITabBarController *)tabBarController
// animationControllerForTransitionFromViewController:(UIViewController *)fromVC
// toViewController:(UIViewController *)toVC {
//}
demo:https://github.com/JuYiWei/CZ_Demos
1