Ich versuche, meinen In-App-Content mithilfe von Core Spotlight durchsuchbar zu machen. Alles funktioniert super, Titel und Beschreibung kommen aber ohne Vorschaubild.CoreSpotlight Thumbnail Image wird nicht in Spotlight-Suche angezeigt
hier ist, was ich versuche:
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");
}];
Ich benutze den gleichen Code, alles gut, aber Thumbnail-Bild funktioniert nicht, Glück @Ayush? Danke –
@SarojKumarojha noch nicht. – Ayush