gpt4 book ai didi

iphone - Objective-C:与 CoreData 的多对多关系

转载 作者:搜寻专家 更新时间:2023-10-30 19:44:59 24 4
gpt4 key购买 nike

我的 iPhone 应用程序有 2 个模型,Category 和 Content,它们具有多对多关系。

这是代码:内容

@interface Content : NSManagedObject {
}

@property(readwrite, retain) NSString *type;
@property(readwrite, retain) NSString *mainText;
...
@property (copy) NSSet * categories;

@end

类别

@interface Category : NSManagedObject {

}
@property (nonatomic, retain) NSNumber * id;
@property (nonatomic, retain) NSNumber * active;
...
@property (copy) NSSet * contents;

@end

然后这个操作:

...
NSSet *tmp_set = [NSSet setWithArray:some_array_with_contents objectsAtIndexes:custom_indexes]];
cat.contents = tmp_set;
[[DataModel managedObjectContext] save:&error];
...

在最后一行,应用严重崩溃说:

-[__NSCFSet _isValidRelationshipDestination__]: unrecognized selector sent to instance 0x5c3bbc0
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFSet _isValidRelationshipDestination__]: unrecognized selector sent to instance 0x5c3bbc0'

最佳答案

您的关系属性不应使用副本。他们应该保留例如:

@property (nonatomic, retain) NSSet* categories;

您不想复制一组托管对象,因为您最终会在对象图中得到重复的对象。这将导致大问题。

然而,这不是眼前的问题。直接的问题是某些东西导致将用于托管对象的选择器发送到集合本身。

这很可能是由于直接将复制的集合分配给关系而不是使用 .m 文件中定义的访问器方法之一造成的。 @dynamic 指令不会创建 setCategories 方法,因为这是一个托管对象,因此您无法获得正确的 KVO 通知并且上下文无法正确更新。当它尝试保存时,它会将验证消息发送到设置对象而不是它包含的对象。

您应该在实现文件中有一个类似于 addCategoryObjects: 的方法。删除副本并使用这些方法应该可以解决问题。

关于iphone - Objective-C:与 CoreData 的多对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6699023/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com