Scalar type in Managed Object only works for IPhone 5

前端 未结 2 2014
无人及你
无人及你 2021-02-04 18:44

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 mes

相关标签:
2条回答
  • 2021-02-04 19:04

    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.

    0 讨论(0)
  • 2021-02-04 19:22

    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.

    0 讨论(0)
提交回复
热议问题