我必须在核心数据中设置实体:
游戏和玩家
游戏 - 看起来像这样(简化):board userid
PLAYERS 用户名
PLAYERS 是独一无二的
我需要选择 GAMES 并将 PLAYERS.name 列添加到此结果中。
我已经设置了所有核心数据和关系,并且可以从“表”中进行选择并将其放入数组和 Tableview 中。
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"GAMES" inManagedObjectContext:context];
[fetchRequest setEntity:entity];
GamesARRAY =[context executeFetchRequest:fetchRequest error:&error];
等等....
但是我如何选择或访问玩家表中的数据?我知道所有的基础知识和理论,但我真的需要代码示例。不仅仅是答案:使用 NSSet 或类似的..