本文主要是介绍iOS复习 获取Tabbar的item 用UIAlertController修改英雄名称并刷新表格,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Tabbar的生命周期:
#import "MainTabBarController.h"
@interface MainTabBarController ()
@end
@implementation MainTabBarController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
// 拿到TabBar相应的item
UITabBarItem *item1 = [self.tabBar.items objectAtIndex:1];
item1.selectedImage = [[UIImage imageNamed:@"add_icon_people_you_might_know"]
这篇关于iOS复习 获取Tabbar的item 用UIAlertController修改英雄名称并刷新表格的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!