iOS 7 tabBar-line, how to remove it?

前端 未结 12 1289
执笔经年
执笔经年 2021-01-31 07:52

Apple has added a tiny line over the tabBar in iOS 7 which is supposed to work as a shadow or fade between the tabBar and the UI

12条回答
  •  借酒劲吻你
    2021-01-31 08:48

    This worked for me

    UIImage* tabBarBackground = [UIImage new];
    if(!OSVersionIsAtLeastiOS7())
    {
        tabBarBackground = [UIImage imageNamed:@"whitebg"];
    }
    [[UITabBar appearance] setShadowImage:tabBarBackground];
    
    [[UITabBar appearance] setBackgroundImage:tabBarBackground];
    

提交回复
热议问题