Is it possible to change UITabBarItem badge color

前端 未结 14 1488
别那么骄傲
别那么骄傲 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:14

    Changing the badge-color is now natively supported in iOS 10 and later using the badgeColor property inside your UITabBarItem. See the apple docs for more infos on the property.

    Example:

    • Swift 3: myTab.badgeColor = UIColor.blue
    • Objective-C: [myTab setBadgeColor:[UIColor blueColor]];
    0 讨论(0)
  • 2020-12-05 01:16

    YES, But the only possible solution is to create a custom Tabbar and creating your custom tabbar badge icon. You will find many article/code for creating custom tabbar.

    0 讨论(0)
提交回复
热议问题