Мне нужно установить отношения для карточек и заметок, ниже приведен пример кода
Карты:
AppDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
entityObj = [NSEntityDescription insertNewObjectForEntityForName:@"Customer" inManagedObjectContext:_appDel.managedObjectContext];
[entityObj setValue: userName forKey:@"custname"];
[entityObj setValue: userDesignation forKey:@"custdesignation"];
[entityObj setValue: userComapnay forKey:@"custcompany"];
[AppDelegate saveContxt];
Примечания:
AppDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
entityObj = [NSEntityDescription insertNewObjectForEntityForName:@"Notes" inManagedObjectContext:_appDel.managedObjectContext];
[entityObj setValue: userName forKey:@"notes"];
[entityObj setValue: userDesignation forKey:@"date"];
[AppDelegate saveContxt];
Как установить отношениядля вышеупомянутых двух моделей?