UITabBarController(一)简单操作

这里提供UITabBarController简单的设置

1. 在Storyboard进行设置

首先,打开storyboard,将“TabBarController”拖入其中:
这里写图片描述

其次,选择一个tabbar的子视图控制器,可进行名称和icon的设置。
这里写图片描述

最后,右击“Tab Bar Controller”以添加子视图控制器:
这里写图片描述

2. 通过代码来实现UITabBarController及相关设置:

首先,自定义一个UITabBarController子类,用以添加子视图及设置相关属性。

- (void)addAllChildViewController
{
    UIViewController *homeVc = [[UIViewController alloc] init];
    homeVc.view.backgroundColor = [UIColor redColor];
    [self addChildViewController:homeVc title:@"首页" imageNamed:@"tab_following"];

    UIViewController *liveVc = [[UIViewController alloc] init];
    liveVc.view.backgroundColor = [UIColor darkGrayColor];
    [self addChildViewController:liveVc title:@"活动" imageNamed:@"tab_live"];

    UIViewController *searchVc = [[UIViewController alloc] init];
    searchVc.view.backgroundColor = [UIColor whiteColor];
    [self addChildViewController:searchVc title:@"发现" imageNamed:@"tab_near"];

    UIViewController *meVc = [[UIViewController alloc] init];
    meVc.view.backgroundColor = [UIColor lightGrayColor];
    [self addChildViewController:meVc title:@"我的" imageNamed:@"tab_me"];

}

// 添加一个 childViewController
- (void)addChildViewController:(UIViewController *)vc title:(NSString *)title imageNamed:(NSString *)imageName
{
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    // 如果同时又navigationbar 和 tabbar 的时候最好分别设置它们的title
    vc.navigationItem.title = title;
    nav.tabBarItem.title = title;
    nav.tabBarItem.image = [UIImage imageNamed:imageName];
    nav.tabBarItem.titlePositionAdjustment = UIOffsetMake(0, -2);
    nav.tabBarItem.selectedImage = [UIImage imageNamed:[NSString stringWithFormat:@"%@_p", imageName]];

    [self addChildViewController:nav];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    [self addAllChildViewController];
}

最后,在AppDelegate中添加相关代码即可:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    self.tabBarController = [[CustomerTabBarCtrl alloc] init];
    self.window.rootViewController = self.tabBarController;
    // 设置tabBar每个item选中时的颜色
    [[UITabBar appearance] setTintColor:[UIColor redColor]];
    // 删除tabbar的阴影线
    [[UITabBar appearance] setShadowImage:[UIImage new]];
    // 解决tabbar的背景
    //[[UITabBar appearance] setBackgroundImage:[UIImage new]];

    // 设置这个窗口有主窗口并显示
    [self.window makeKeyAndVisible];

    return YES;
}

最终效果

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值