How do I change background color of UITabItem when item is selected

前端 未结 11 1072
暖寄归人
暖寄归人 2021-02-01 19:15

I would like a different background color when the user selects a tab bar item than when it is unselected.

11条回答
  •  梦如初夏
    2021-02-01 19:50

    Put this in your AppDelegate.m file:

     - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
                // Override point for customization after application launch.
    
                [UITabBar appearance].selectionIndicatorImage = [UIImage imageNamed:@"activeTabBackgroundImage"];
    
    
                return YES;
            }
    

提交回复
热议问题