iOS开发中标签控制器的使用——UITabBarController(二)

简介: iOS开发中标签控制器的使用——UITabBarController

四、关于标签栏TabBar


       通过自定义标签栏的一些属性,使我们可以更加灵活的使用tabBar。


1、UITabBar属性和方法


设置标签:


@property(nullable,nonatomic,copy) NSArray<UITabBarItem *> *items;  

//设置选中的标签    

@property(nullable,nonatomic,assign) UITabBarItem *selectedItem;

- (void)setItems:(nullable NSArray<UITabBarItem *> *)items animated:(BOOL)animated;

设置自定义标签顺序:


//调用这个方法会弹出一个类似上面第二张截图的控制器,我们可以交换标签的布局顺序

- (void)beginCustomizingItems:(NSArray<UITabBarItem *> *)items;  

//完成标签布局

- (BOOL)endCustomizingAnimated:(BOOL)animated;  

//是否正在自定义标签布局

- (BOOL)isCustomizing;

设置tabBar颜色相关:


//设置渲染颜色,会影响选中字体和图案的渲染

@property(null_resettable, nonatomic,strong) UIColor *tintColor;

//设置导航栏的颜色

@property(nullable, nonatomic,strong) UIColor *barTintColor;

设置背景图案:


//设置导航栏背景图案

@property(nullable, nonatomic,strong) UIImage *backgroundImage;

//设置选中一个标签时,标签背后的选中提示图案 这个会出现在设置的item图案的后面

@property(nullable, nonatomic,strong) UIImage *selectionIndicatorImage;

//设置阴影的背景图案

@property(nullable, nonatomic,strong) UIImage *shadowImage

TabBar中标签的宏观属性:


//设置标签item的位置模式

@property(nonatomic) UITabBarItemPositioning itemPositioning;

//枚举如下

typedef NS_ENUM(NSInteger, UITabBarItemPositioning) {

   UITabBarItemPositioningAutomatic,//自动

   UITabBarItemPositioningFill,//充满

   UITabBarItemPositioningCentered,//中心

} NS_ENUM_AVAILABLE_IOS(7_0);

//设置item宽度

@property(nonatomic) CGFloat itemWidth;

//设置item间距

@property(nonatomic) CGFloat itemSpacing;

与导航栏类似,也可以设置tabBar的风格和透明效果:


//风格 分黑白两种

@property(nonatomic) UIBarStyle barStyle;

//是否透明效果

@property(nonatomic,getter=isTranslucent) BOOL translucent;

2、UITabBarDelegate


//选中标签时调用

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item;

//将要开始编辑标签时

- (void)tabBar:(UITabBar *)tabBar willBeginCustomizingItems:(NSArray<UITabBarItem *> *)items;          //已经开始编辑标签时        

- (void)tabBar:(UITabBar *)tabBar didBeginCustomizingItems:(NSArray<UITabBarItem *> *)items;          

//将要进入编辑状态时

- (void)tabBar:(UITabBar *)tabBar willEndCustomizingItems:(NSArray<UITabBarItem *> *)items changed:(BOOL)changed;

//已经进入编辑状态时

- (void)tabBar:(UITabBar *)tabBar didEndCustomizingItems:(NSArray<UITabBarItem *> *)items changed:(BOOL)changed;

五、再看UITabBarItem


       和NavigationItem类似,标签栏上的item也可以自定义,一些方法如下。


初始化方法:


//通过标题和图案进行创建

- (instancetype)initWithTitle:(nullable NSString *)title image:(nullable UIImage *)image tag:(NSInteger)tag;

- (instancetype)initWithTitle:(nullable NSString *)title image:(nullable UIImage *)image selectedImage:(nullable UIImage *)selectedImage;

//创建系统类型的

- (instancetype)initWithTabBarSystemItem:(UITabBarSystemItem)systemItem tag:(NSInteger)tag;

UITabBarSystemItem的枚举如下:


typedef NS_ENUM(NSInteger, UITabBarSystemItem) {

   UITabBarSystemItemMore,//更多图标

   UITabBarSystemItemFavorites,//最爱图标

   UITabBarSystemItemFeatured,//特征图标

   UITabBarSystemItemTopRated,//高级图标

   UITabBarSystemItemRecents,//最近图标

   UITabBarSystemItemContacts,//联系人图标

   UITabBarSystemItemHistory,//历史图标

   UITabBarSystemItemBookmarks,//图书图标

   UITabBarSystemItemSearch,//查找图标

   UITabBarSystemItemDownloads,//下载图标

   UITabBarSystemItemMostRecent,//记录图标

   UITabBarSystemItemMostViewed,//全部查看图标

};

UITabBarItem常用属性:


//设置选中图案

@property(nullable, nonatomic,strong) UIImage *selectedImage;

下面这个属性可以设置item的头标文字:


con.tabBarItem.badgeValue = @"1";



//设置标题的位置偏移

@property (nonatomic, readwrite, assign) UIOffset titlePositionAdjustment;

由于UITabBarItem是继承于UIBarItem,还有下面这个属性可以设置使用:


//标题

@property(nullable, nonatomic,copy)             NSString    *title;  

//图案    

@property(nullable, nonatomic,strong)           UIImage     *image;  

//横屏时的图案      

@property(nullable, nonatomic,strong)           UIImage     *landscapeImagePhone;

//图案位置偏移

@property(nonatomic)                  UIEdgeInsets imageInsets;

//横屏时的图案位置偏移

@property(nonatomic)                  UIEdgeInsets landscapeImagePhoneInsets ;

//设置和获取标题的字体属性

- (void)setTitleTextAttributes:(nullable NSDictionary<NSString *,id> *)attributes forState:(UIControlState)state;

- (nullable NSDictionary<NSString *,id> *)titleTextAttributesForState:(UIControlState)state;

目录
相关文章
|
11天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
2天前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
4天前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
18天前
|
安全 数据处理 Swift
深入探索iOS开发中的Swift语言特性
本文旨在为开发者提供对Swift语言在iOS平台开发的深度理解,涵盖从基础语法到高级特性的全面分析。通过具体案例和代码示例,揭示Swift如何简化编程过程、提高代码效率,并促进iOS应用的创新。文章不仅适合初学者作为入门指南,也适合有经验的开发者深化对Swift语言的认识。
39 9
|
14天前
|
设计模式 Swift iOS开发
探索iOS开发:从基础到高级,打造你的第一款App
【10月更文挑战第40天】在这个数字时代,掌握移动应用开发已成为许多技术爱好者的梦想。本文将带你走进iOS开发的世界,从最基础的概念出发,逐步深入到高级功能实现,最终指导你完成自己的第一款App。无论你是编程新手还是有志于扩展技能的开发者,这篇文章都将为你提供一条清晰的学习路径。让我们一起开始这段旅程吧!
|
18天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异和挑战
【10月更文挑战第37天】在移动应用开发的广阔舞台上,安卓和iOS这两大操作系统扮演着主角。它们各自拥有独特的特性、优势以及面临的开发挑战。本文将深入探讨这两个平台在开发过程中的主要差异,从编程语言到用户界面设计,再到市场分布的不同影响,旨在为开发者提供一个全面的视角,帮助他们更好地理解并应对在不同平台上进行应用开发时可能遇到的难题和机遇。
|
16天前
|
iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第39天】在苹果的生态系统中,SwiftUI框架以其声明式语法和易用性成为开发者的新宠。本文将深入SwiftUI的核心概念,通过实际案例展示如何利用这一框架快速构建用户界面,并探讨其对iOS应用开发流程的影响。
|
iOS开发
iOS开发中标签控制器的使用——UITabBarController(一)
iOS开发中标签控制器的使用——UITabBarController
237 0
iOS开发中标签控制器的使用——UITabBarController(一)