NewsとTagの2つのエンティティがあります。ニュースはタグと多くの関係があり、タグはニュースと多くの関係があります(逆の関係)。
Tag:
-tagcontent
News:
-title
-newscontent
tagcontent =@"Cars"ですべてのニュースのリストを取得する方法
あなたはこのような何かを使うことができます-どれでもあなたを助けるべきです
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];