选项卡栏项的属性检查器中的 "Badge" 字段是什么?

What is the "Badge" field for in a Tab Bar Item's attributes inspector?

我熟悉徽章,并通过代码使用它们,但是标签栏项目的属性检查器有一个 Badge 字段。这个字段是做什么用的?

用于在标签栏图标上方显示一个指示器。这对于通知用户某个选项卡上有可用的新数据很有用。

来自UITabBarItem documentation:

Text that is displayed in the upper-right corner of the item with a surrounding red oval.

上面是在情节提要中设置的 Badge 值为 3 的标签栏项目。

(也可以使用 badgeValue 属性 以编程方式设置此值。)