@property (retain) BOol *booleanProperty;
编译失败,说错误:属性’booleanProperty’与’retain’属性必须是对象类型.
似乎Cocoa中的某些地方使用NSNumber对象来代表布尔值,所以我试着设置它
@property (retain) NSNumber *booleanProperty;
代替.但是,这会引发以下运行时错误:
*** -[NSAttributeDescription _setManagedobjectModel:]: unrecognized selector sent to instance 0x101b470*** Terminating app due to uncaught exception 'NSinvalidargumentexception',reason: '*** -[NSAttributeDescription _setManagedobjectModel:]: unrecognized selector sent to instance 0x101b470'
使用GDB,我可以追溯到我的源代码中的行,将我的实体添加到托管对象模型中:
[DVManagedobjectModel setEntitIEs:[NSArray arrayWithObjects:myEntityWithABooleanAttribute,myOtherEntity]];
所以我的问题是:我应该在我的自定义类头中设置booleanProperty的类型?
解决方法 尝试:@property (nonatomic) BOol booleanProperty;
问题是您在属性定义中使用了retain.为此,您必须拥有一个Objective-C类的属性(它应该能够理解’retain’方法). BOol不是一个类,而是一个用于signed char的别名.
@H_403_2@ 总结以上是内存溢出为你收集整理的objective-c – Core Data实体中布尔属性的类型是什么?全部内容,希望文章能够帮你解决objective-c – Core Data实体中布尔属性的类型是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)