托管对象中的标量类型仅适用于 iPhone 5

发布于 2024-11-25 23:53:09 字数 167 浏览 2 评论 0原文

属性“Latitude”是“LatitudeLongitude”类的标量类型。无法为其生成 setter 方法。

当我为托管对象生成代码时,我收到一条消息,询问我是否需要原始数据类型的标量属性。我应该使用它吗?我想让这个应用程序与 iPhone 3 - 5 兼容,

这个问题有什么问题吗?

Property 'Latitude' is a scalar type on class 'LatitudeLongitude'. Cannot generate a setter method for it.

When I generated codes for my managed object, I got a message whether I want scalar properties for primitive data type. should I use it? I want to make this application compatible with iPhone 3 - 5

is there any issues with this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

鹿! 2024-12-02 23:53:09

当您使用标量属性时,您必须自己为这些属性提供 getter 和 setter 的实现,如文档中所述:

“您可以将属性声明为标量值,但对于标量值,Core Data 无法动态生成访问器方法 - 您必须提供自己的实现(请参阅“托管对象访问器方法”)。Core Data 自动合成原始访问器方法(primitiveLength和 setPrimitiveLength:),但您需要声明它们以抑制编译器警告。”

文档

在这个地方我建议你查看这篇文章 核心数据标量

我希望我有所帮助。

When you use scalar properties you have to provide implementations of getters and setters for those properties by yourself, as described in documentation:

"You can declare properties as scalar values, but for scalar values Core Data cannot dynamically generate accessor methods—you must provide your own implementations (see “Managed Object Accessor Methods”). Core Data automatically synthesizes the primitive accessor methods (primitiveLength and setPrimitiveLength:), but you need to declare them to suppress compiler warnings."

Documentation

At this place I would recommend you to check this post core-data-scalars.

I hope I have helped.

暖阳 2024-12-02 23:53:09

这不是真的,Core Data 长期以来一直支持标量。您不必像许多博客文章所指出的那样实现自定义访问器。

This is not true, scalars have been supported in Core Data out of the box for a long time. You do not have to implement custom accessors as many blog posts out there indicate.

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