0

NewsとTagの2つのエンティティがあります。ニュースはタグと多くの関係があり、タグはニュースと多くの関係があります(逆の関係)。

Tag:
-tagcontent
News:
-title
-newscontent

tagcontent =@"Cars"ですべてのニュースのリストを取得する方法

4

1 に答える 1

1

あなたはこのような何かを使うことができます-どれでもあなたを助けるべきです

     NSFetchRequest *request = [[NSFetchRequest alloc]init];
    NSString *tagName = @"Cars";
    request.entity = [NSEntityDescription entityForName:@"News" inManagedObjectContext:context];
    request.predicate = [NSPredicate predicateWithFormat:@"ANY tag.tagcontent = %@",tagName];

    NSError *error = nil;
    NSrray *results = [context executeFetchRequest:request error:&error];
于 2012-04-17T11:05:10.080 に答える