美文网首页iOS Developer
iOS-TabBar背景色/TabbarItem图片居中

iOS-TabBar背景色/TabbarItem图片居中

作者: Tasuka | 来源:发表于2016-10-23 09:25 被阅读0次

    //设置tabbar背景色
    [[UITabBar appearance] setBarTintColor:[UIColor blackColor]];

    //tabbarItem图片居中显示

    UIViewController *controller = [[UIViewController alloc] init];
    controller.tabBarItem.imageInsets = UIEdgeInsetsMake(6, 0, -6, 0);
    

    相关文章

      网友评论

        本文标题:iOS-TabBar背景色/TabbarItem图片居中

        本文链接:https://www.haomeiwen.com/subject/dbyxuttx.html