Is it possible to change UITabBarItem badge color

前端 未结 14 1635
别那么骄傲
别那么骄傲 2020-12-05 00:14

I want to change background color of UITabBarItem badge but can\'t find any resource on how to make it.

14条回答
  •  悲哀的现实
    2020-12-05 01:03

    Take a look here @ UITabbarItem-CustomBadge.

    A complete demonstration is following

    it takes only two line of code, if you want to use the default implementation

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
      //supplying the animation parameter
      [UITabBarItem setDefaultAnimationProvider:[[DefaultTabbarBadgeAnimation alloc] init]];
      [UITabBarItem setDefaultConfigurationProvider:[[DefaultSystemLikeBadgeConfiguration alloc] init]];
    
      //rest of your code goes following...
    
      return YES;
    }
    

提交回复
热议问题