ios – CoreSpotlight缩略图图像未显示在Spotlight搜索上

前端之家收集整理的这篇文章主要介绍了ios – CoreSpotlight缩略图图像未显示在Spotlight搜索上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在Core Spotlight的帮助下搜索我的应用程序内容.一切都很好,标题和描述来了,但没有缩略图.

这是我正在尝试的:

CSSearchableItemAttributeSet *attributeSet = [[CSSearchableItemAttributeSet alloc]initWithItemContentType:(NSString *)kUTTypeImage];

attributeSet.title = @"My First Spotlight Search";
attributeSet.contentDescription = @"This is my first spotlight Search";

attributeSet.keywords = [NSArray arrayWithObjects:@"Hello",@"Welcome",@"Spotlight",nil];

UIImage *image = [UIImage imageNamed:@"searchIcon.png"];
NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(image)];
attributeSet.thumbnailData = imageData;

CSSearchableItem *item = [[CSSearchableItem alloc]initWithUniqueIdentifier:@"com.deeplink" domainIdentifier:@"spotlight.sample" attributeSet:attributeSet];

[[CSSearchableIndex defaultSearchableIndex] indexSearchableItems:@[item] completionHandler: ^(NSError * __nullable error) {
    if (!error)
        NSLog(@"Search item indexed");
}];

解决方法

原文链接:https://www.f2er.com/iOS/333369.html

猜你在找的iOS相关文章