Spotlight Search API iOS9

时间:2015-11-02 06:39:31

标签: ios9 corespotlight

我想知道CSSearchableItemAttributeSet的哪个属性负责显示字幕类型,位于标题右侧,例如日期。

1 个答案:

答案 0 :(得分:3)

当您将attributeSet的contentType属性设置为kUTTypeMessage时,则contentCreationDate就是您要查找的内容。

set.contentType = (NSString *)kUTTypeMessage;
set.contentCreationDate = [NSDate date];

试试吧〜 顺便说一句,该死的苹果文件...

相关问题