自定义 NSManagedObject 的显示值
我希望能够在控制台中打印我的自定义 NSManagedObject,为此,在我的对象中,我重写了描述方法,如下所示:
@implementation Place
@dynamic libelle;
@dynamic latitude;
@dynamic longitude;
- (NSString *)description {
return [NSString stringWithFormat:@"{libelle=%@, latitude=%@, longitude=%@}",
libelle, latitude, longitude];
}
@end
但我无法访问我的 @dynamic 属性。有办法做到这一点吗?
I want to be able to print my custom NSManagedObject in the console, to do that, in my object, I'm overriding the description method, like this:
@implementation Place
@dynamic libelle;
@dynamic latitude;
@dynamic longitude;
- (NSString *)description {
return [NSString stringWithFormat:@"{libelle=%@, latitude=%@, longitude=%@}",
libelle, latitude, longitude];
}
@end
But I cannot access my @dynamic properties. Is there a way to do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用该属性,而不是直接访问实例变量:
self.libelle
、self.latitude
和self.longitude
。Try using the property, not accessing the instance variables directly:
self.libelle
,self.latitude
andself.longitude
.好的,我明白了。该属性不存在,因此我们只需要使用访问器。
Ok, I got it. The property does not exist so we just need to use the accessor.