1

我在 iOS 中使用搜索 apiNSUserActivity和 Core Spotlight 索引 - 除了我无法让我的项目的评级显示在搜索结果中之外,我已经让它一切正常?

我已经设置了我CSSearchableItemAttributeSet的类型kUTTypeContent并设置了 rating 和 ratingDescription 属性,而我填充的所有其他属性都工作正常,评级没有显示!还有其他人设法做到这一点吗?

4

1 回答 1

0

在 Apple 论坛上查看: https ://forums.developer.apple.com/thread/14386

苹果必须解决这个问题。但我通知一些应用程序(Zomato)在聚光灯搜索中显示评级。

CSSearchableItemAttributeSet 不支持 NSAttributedString。在我看来,你现在可以使用符号了。

 attributeSet.contentDescription = "Rating: ⭐️⭐️⭐️"
于 2015-10-21T06:01:38.060 回答