日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

自定义tabbar

發布時間:2025/7/14 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 自定义tabbar 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

新建一個繼承UITabbar的類

- (void)viewDidLoad {

? ? [super viewDidLoad];

?

? ? LFHomeTableViewController *home=[[LFHomeTableViewController alloc]init];

? ? [self addChildVC:home Title:@"首頁" image:@"tabbar_home" selectedImage:@"tabbar_home_selected"];

?? ?

? ? LFMessageTableViewController *discover=[[LFMessageTableViewController alloc]init];

? ? [self addChildVC:discover Title:@"消息" image:@"tabbar_message_center" selectedImage:@"tabbar_message_center_selected"];

?? ?

? ? LFDiscoverTableViewController *message=[[LFDiscoverTableViewController alloc]init];

? ? [self addChildVC:message Title:@"發現" image:@"tabbar_discover" selectedImage:@"tabbar_discover_selected"];

?? ?

? ? LFProfileTableViewController *profile=[[LFProfileTableViewController alloc]init];

? ? [self addChildVC:profile Title:@"我" image:@"tabbar_profile" selectedImage:@"tabbar_profile_selected"];

}

- (void)addChildVC:(UIViewController *)childVC Title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage

{

? ? childVC.title=title;

? ? childVC.tabBarItem.image=[UIImage imageNamed:image];

? ? childVC.tabBarItem.selectedImage=[[UIImage imageNamed:selectedImage]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

?? ?

? ? //設置文字的樣式

? ? NSMutableDictionary *textAttrs=[NSMutableDictionary dictionary];

? ? textAttrs[NSForegroundColorAttributeName]=LFColor(123, 123, 123);

? ? [childVC.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

?? ?

? ? NSMutableDictionary *selectTextAttrs=[NSMutableDictionary dictionary];

? ? selectTextAttrs[NSForegroundColorAttributeName]=[UIColor orangeColor];

? ? [childVC.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

? ? childVC.view.backgroundColor=LFRandomColor;

?? ?

? ? UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:childVC];

? ? [self addChildViewController:nav];

}

?在AppDelegate.m文件中添加

? ?self.window.rootViewController=[[LFTabbarViewController alloc]init];就行了

運行效果截圖:

?

轉載于:https://www.cnblogs.com/ITliufei/p/5250754.html

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的自定义tabbar的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。