在向核心数据添加数据时,您将如何检查是否已建立关系?目前,我的两个实体之间有TO MANY关系。
我正在尝试创建一个详细视图,但我正在苦苦挣扎,我不确定这是由于没有建立关系,还是我的问题是将数据传递给新的视图控制器。
我正在使用以下代码将数据添加到核心数据实体。在建立两者之间的关系时,这看起来正确吗?
ExcerciseInfo *info = [_fetchedResultsController objectAtIndexPath:indexPath];
NSManagedObject *routineEntity = [NSEntityDescription insertNewObjectForEntityForName:@"Routines"inManagedObjectContext:context];
NSManagedObject *routineEntityDetail = [NSEntityDescription insertNewObjectForEntityForName:@"RoutinesDetails" inManagedObjectContext:context];
[[routineEntityDetail valueForKey:@"name"] addObject:routineEntity];
[routineEntity setValue: info.name forKey:@"routinename"];
[routineEntityDetail setValue: info.details.muscle forKey:@"image"];
NSError *error = nil;
错误调查:
我使用了建议的方法之一,但是当我在NSLog(@"ExTitle *** %@",Ex.routinedet);
routinedet 中测试关系时仍然遇到这个错误,因为@property (nonatomic, retain) NSSet *routinedet;
在核心数据生成的NSObject 关系模型中:
Relationship 'routinedet' fault on managed object (0x749ea50) <Routines: 0x749ea50> (entity: Routines; id: 0x749c630 <x-coredata://C075DDEC-169D-46EC-A4B7-972A04FCED70/Routines/p1> ; data: {
routinedet = "<relationship fault: 0x8184a20 'routinedet'>";
routinename = "Leg Crunch";
我还进行了测试以确保 segue 正在工作并且它是这样的;
self.title = Ex.routinename;
RoutinesDetails *info;
NSLog(@"Image *** %@",info.image);
它将标题显示为正确的名称,但将图像字符串返回为空。