自定义 NSManagedObject 的显示值

发布于 2024-10-16 22:07:45 字数 374 浏览 7 评论 0原文

我希望能够在控制台中打印我的自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

写下不归期 2024-10-23 22:07:45

尝试使用该属性,而不是直接访问实例变量:self.libelleself.latitudeself.longitude

Try using the property, not accessing the instance variables directly: self.libelle, self.latitude and self.longitude.

猫七 2024-10-23 22:07:45

好的,我明白了。该属性不存在,因此我们只需要使用访问器。

@implementation Place

@dynamic libelle;
@dynamic latitude;
@dynamic longitude;

- (NSString *)description {
    return [NSString stringWithFormat:@"{libelle=%@, latitude=%@, longitude=%@}", 
            self.libelle, self.latitude, self.longitude];
}

@end

Ok, I got it. The property does not exist so we just need to use the accessor.

@implementation Place

@dynamic libelle;
@dynamic latitude;
@dynamic longitude;

- (NSString *)description {
    return [NSString stringWithFormat:@"{libelle=%@, latitude=%@, longitude=%@}", 
            self.libelle, self.latitude, self.longitude];
}

@end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文