Git Product home page Git Product logo

corespotlightdemo's Issues

hi,

i have some question with this.
i follow your step to creat my project,but i can't add something into the core spotlight.
can you help me.
///////////////////////////////////////

- (void)setupSearchableContentWithArray:(NSArray *)aArray {
    NSMutableArray *searchableItems = [NSMutableArray array];

    for (int i = 0; i < aArray.count - 1; i++) {
        NSDictionary *dic = aArray[i];
        CSSearchableItemAttributeSet *searchableItemAttributeSet = [[CSSearchableItemAttributeSet alloc]initWithItemContentType:@"item"];
        //set title
        searchableItemAttributeSet.title = dic[@"Title"];
        //set movie image
        NSArray *imagePathParts = [dic[@"Image"] componentsSeparatedByString:@"."];
        searchableItemAttributeSet.thumbnailURL = [[NSBundle mainBundle] URLForResource:imagePathParts[0] withExtension:imagePathParts[1]];
        //set description
        searchableItemAttributeSet.contentDescription = dic[@"Description"];

        /////////////////
        NSMutableArray *keyword = [NSMutableArray array];
        NSArray *movieCategorys = [dic[@"Category"] componentsSeparatedByString:@","];
        for (NSString *movieCategory in movieCategorys) {
            [keyword addObject:movieCategory];
        }
        NSArray *stars = [dic[@"Stars"] componentsSeparatedByString:@","];
        for (NSString *star in stars) {
            [keyword addObject:star];
        }

        searchableItemAttributeSet.keywords = keyword;

        CSSearchableItem *searchableItem = [[CSSearchableItem alloc] initWithUniqueIdentifier:@"com.YCKX.coresplit-test.\(i)"
                                                                             domainIdentifier:@"movies" attributeSet:searchableItemAttributeSet];
        [searchableItems addObject:searchableItem];
    }

    [[CSSearchableIndex defaultSearchableIndex] indexSearchableItems:searchableItems completionHandler:^(NSError * _Nullable error) {
        if (error) {
            NSLog(@"failed:%@",error.localizedDescription);
        }
        else {
            NSLog(@"successes");
        }
    }];
}

Not complete code

Hi,when I download the project,I find it's not the complete project in your blog,just a blank sample code?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.