我试图将我的应用产品编入索引,如果我搜索我设置的关键字之一,它的效果会很好:
CSSearchableItemAttributeSet *attibuteSet = [[CSSearchableItemAttributeSet alloc] initWithItemContentType:(__bridge NSString *)kUTTypeImage];
attibuteSet.keywords = @[self.name, self.desc, self.regularPrice];
例如,我有一件名为" Christmas"的汗衫。如果我写"圣诞节"在聚光灯下搜索它没关系。如果我使用Siri"找我圣诞节"它没有用。或者更一般"找我一件T恤"如果T恤被编入索引,它也不起作用。
让它的内容索引与Siri相处的最佳做法是什么?