UITabbarController控制器使用心得

** UITabbarController控制器可以将软件按照模块进行很好的划分,也是主流软件架构的window的根控制器**
工作中,我一般会声明一个UITabbarController的子类作为window的根控制器,并实现其代理方法。

UITabBarController.h分析

属性

子控制器数组
@property(nullable, nonatomic,copy) NSArray<__kindof UIViewController *> *viewControllers;
设置子控制器数组
- (void)setViewControllers:(NSArray *)viewControllers animated:(BOOL)animated;
当前选择控制器
@property(nullable, nonatomic, assign)UIViewController *selectedViewController;
当前选择控制器索引
@property(nonatomic) NSUInteger selectedIndex;
这个没用过 也不晓得干嘛使
@property(nonatomic, readonly) UINavigationController *moreNavigationController;
这个没用过 也不晓得干嘛使
@property(nullable, nonatomic, copy) NSArray *customizableViewControllers;
tabbar底部标签栏
@property(nonatomic,readonly) UITabBar *tabBar ;
代理
@property(nullable, nonatomic,weak) id<UITabBarControllerDelegate> delegate;

代理方法

/**
 *  点击Item时调用:控制哪些 ViewController 的标签栏能被点击
 *
 *  @param tabBarController 当前tabbar控制器
 *  @param viewController   将要点击的目标控制器
 *
 *  @return YES:允许点击 NO:不允许点击
 */
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController NS_AVAILABLE_IOS(3_0);
/**
 *  点击Item时调用
 *
 *  @param tabBarController 当前tabbar控制器
 *  @param viewController   将要点击的目标控制器
 */
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController;
/**
 *  监控开始初始化子控制器
 *
 *  @param tabBarController  当前tabbar控制器
 *  @param viewControllers   子控制器
 */
- (void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers NS_AVAILABLE_IOS(3_0) __TVOS_PROHIBITED;
/**
 *  监控初始化子控制器完成
 *
 *  @param tabBarController  当前tabbar控制器
 *  @param viewControllers   子控制器
 *  @param changed           是否改变
 */
- (void)tabBarController:(UITabBarController *)tabBarController willEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed NS_AVAILABLE_IOS(3_0) __TVOS_PROHIBITED;
/**
 *  监控初始化子控制器完成
 *
 *  @param tabBarController  当前tabbar控制器
 *  @param viewControllers   子控制器
 *  @param changed           是否改变
 */
- (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers changed:(BOOL)changed __TVOS_PROHIBITED;
/**
 *  监控横竖屏切换
 *
 *  @param tabBarController tabbar控制器
 *
 *  @return 横竖屏切换枚举
 */
- (UIInterfaceOrientationMask)tabBarControllerSupportedInterfaceOrientations:(UITabBarController *)tabBarController NS_AVAILABLE_IOS(7_0) __TVOS_PROHIBITED;
/**
 *  监控横竖屏切换
 *
 *  @param tabBarController tabbar控制器
 *
 *  @return 横竖屏切换枚举
 */
- (UIInterfaceOrientation)tabBarControllerPreferredInterfaceOrientationForPresentation:(UITabBarController *)tabBarController NS_AVAILABLE_IOS(7_0) __TVOS_PROHIBITED;
/**
 *  定制转场动画
 *
 *  @param tabBarController    当前tabbar控制器
 *  @param animationController 动画控制器
 *
 *  @return 转场动画
 */
- (nullable id <UIViewControllerInteractiveTransitioning>)tabBarController:(UITabBarController *)tabBarController
                               interactionControllerForAnimationController: (id <UIViewControllerAnimatedTransitioning>)animationController NS_AVAILABLE_IOS(7_0);
/**
 *  定制转场动画
 *
 *  @param tabBarController 当前tabbar控制器
 *  @param fromVC           起点控制器
 *  @param toVC             目标控制器
 *
 *  @return 转场动画
 */
- (nullable id <UIViewControllerAnimatedTransitioning>)tabBarController:(UITabBarController *)tabBarController
                     animationControllerForTransitionFromViewController:(UIViewController *)fromVC
                                                       toViewController:(UIViewController *)toVC  NS_AVAILABLE_IOS(7_0);

UIViewController分类

给每一个视图控制器拓展一个tabBarItem和tabBarController

@interface UIViewController (UITabBarControllerItem)

@property(null_resettable, nonatomic, strong) UITabBarItem *tabBarItem; // Automatically created lazily with the view controller's title if it's not set explicitly.

@property(nullable, nonatomic, readonly, strong) UITabBarController *tabBarController; // If the view controller has a tab bar controller as its ancestor, return it. Returns nil otherwise.

@end

UITabBarItem分析

** UITabBarItem继承于UIBarItem ,我们先分析下UIBarItem**

/**
 *  是否可点击
 */
@property(nonatomic,getter=isEnabled) BOOL enabled;      // default is YES
/**
 *  item的title
 */
@property(nullable, nonatomic,copy) NSString *title;        // default is nil
/**
 *  item的Image
 */
@property(nullable, nonatomic,strong) UIImage *image;        // default is nil
@property(nullable, nonatomic,strong) UIImage *landscapeImagePhone NS_AVAILABLE_IOS(5_0) __TVOS_PROHIBITED; // default is nil
/**
 *  item图片的边框
 */
@property(nonatomic) UIEdgeInsets imageInsets;  // default is UIEdgeInsetsZero
@property(nonatomic) UIEdgeInsets landscapeImagePhoneInsets NS_AVAILABLE_IOS(5_0) __TVOS_PROHIBITED;  // default is UIEdgeInsetsZero. These insets apply only when the landscapeImagePhone property is set.
@property(nonatomic) NSInteger tag;          // default is 0

/* You may specify the font, text color, and shadow properties for the title in the text attributes dictionary, using the keys found in NSAttributedString.h.
 */
/**
 *  设置title属性
 *
 *  @param attributes 文字属性
 *  @param state      item状态
 */
- (void)setTitleTextAttributes:(nullable NSDictionary<NSString *,id> *)attributes forState:(UIControlState)state NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
/**
 *  获取item属性字典
 *
 *  @param state item状态
 *
 *  @return item属性字典
 */
- (nullable NSDictionary<NSString *,id> *)titleTextAttributesForState:(UIControlState)state NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;

Demo(Objective-C)

AppDelegate设置window的根控制器

#import "AppDelegate.h"
#import "MYFTabbarController.h"
@interface AppDelegate ()
@property (nonatomic, strong) MYFTabbarController *tabbar;
@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    self.tabbar = [[MYFTabbarController alloc]init];
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [self.window setRootViewController:self.tabbar];
    [self.window makeKeyAndVisible];
    return YES;
}

自定义TabbarController

#import "MYFTabbarController.h"

@interface MYFTabbarController ()

@end

@implementation MYFTabbarController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //声明子控制器
    [self setChildVC];
}
- (void)setChildVC{
    UIViewController *vc1 = [[UIViewController alloc]init];
    vc1.view.backgroundColor = [UIColor yellowColor];
    vc1.title = @"vc1";
    vc1.tabBarItem.title = @"vc1";
    vc1.tabBarItem.image = [self imageFromColor:[UIColor yellowColor] andFrame:CGRectMake(0, 0, 33, 33)];
    UINavigationController *nav1 = [[UINavigationController alloc]initWithRootViewController:vc1];
    
    UIViewController *vc2 = [[UIViewController alloc]init];
    vc2.title = @"vc2";
    vc2.tabBarItem.title = @"vc2";
    vc2.view.backgroundColor = [UIColor blueColor];
    vc2.tabBarItem.image = [self imageFromColor:[UIColor blueColor] andFrame:CGRectMake(0, 0, 33, 33)];
    UINavigationController *nav2 = [[UINavigationController alloc]initWithRootViewController:vc2];
    
    UIViewController *vc3 = [[UIViewController alloc]init];
    vc3.title = @"vc3";
    vc3.tabBarItem.title = @"vc3";
    vc3.view.backgroundColor = [UIColor redColor];
    vc3.tabBarItem.image = [self imageFromColor:[UIColor redColor] andFrame:CGRectMake(0, 0, 33, 33)];
    UINavigationController *nav3 = [[UINavigationController alloc]initWithRootViewController:vc3];
    
    self.viewControllers = @[nav1,nav2,nav3];
}

- (UIImage *)imageFromColor:(UIColor *)color andFrame:(CGRect)frame{
    
    CGRect rect = frame;
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext(); 
    return img;
}
@end

效果

1.gif

这时候你会发现item的select状态下是经过渲染的,开发中我们也大部分用自定义item的图片,而不用渲染后的结果

UITabbarItem禁止渲染

通过UIImage的方法来禁止图片渲染

// Create a version of this image with the specified rendering mode. By default, images have a rendering mode of UIImageRenderingModeAutomatic.
/**
 *  设置图片Model
 *
 *  @param renderingMode 
 typedef NS_ENUM(NSInteger, UIImageRenderingMode) {
             UIImageRenderingModeAutomatic,          // Use the default rendering mode for the context where the image is used  默认模式,自动渲染
             UIImageRenderingModeAlwaysOriginal,     // Always draw the original image, without treating it as a template 原始模式,原始图片
             UIImageRenderingModeAlwaysTemplate,     // Always draw the image as a template image, ignoring its color information 简易模式,忽视图片颜色
 } NS_ENUM_AVAILABLE_IOS(7_0);
 *
 *  @return <#return value description#>
 */
- (UIImage *)imageWithRenderingMode:(UIImageRenderingMode)renderingMode NS_AVAILABLE_IOS(7_0);
    vc1.tabBarItem.selectedImage = [[self imageFromColor:[UIColor yellowColor] andFrame:CGRectMake(0, 0, 33, 33)] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    vc1.tabBarItem.image = [[self imageFromColor:[UIColor lightGrayColor] andFrame:CGRectMake(0, 0, 33, 33)] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
2.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,194评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,058评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,780评论 0 346
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,388评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,430评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,764评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,907评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,679评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,122评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,459评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,605评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,270评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,867评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,734评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,961评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,297评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,472评论 2 348

推荐阅读更多精彩内容