是否可以更改UITabBarItem徽章颜色

是否可以更改UITabBarItem徽章颜色

本文介绍了是否可以更改UITabBarItem徽章颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想更改 UITabBarItem 徽章的背景颜色,但无法找到有关如何制作它的任何资源。


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

推荐答案

UITabBarItem 自iOS 10开始提供此功能。

UITabBarItem has this available since iOS 10.

var badgeColor: UIColor? { get set }

也可通过外观获得。

if #available(iOS 10, *) {
   UITabBarItem.appearance().badgeColor = .green
}

参考文档:

这篇关于是否可以更改UITabBarItem徽章颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 01:40