核心数据唯一性
有什么方法可以根据集合中其他实体中的属性值验证核心数据实体属性中更新的值?
目前,我创建了一个具有一些默认值的实体,将其添加到 arrangedObjects
中,然后让用户修改各种属性值。但是,我想检查特定属性并确保数组中没有其他实体具有与该属性相同的值。最好的方法是什么?
非常感谢, 丹妮.
Is there any way I can validate a value updated in a Core Data entity's property against values of the property in other entities in the collection?
At the moment I create an entity with some default values, add it to arrangedObjects
, then get the user to modify the various property values. However, I would like to check a particular property and make sure there're no other entities in the array with the same value for that property. What's the best way to do this?
Many thanks,
Dany.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手动检查只需几行代码,并具有快速枚举循环:
Manually checking is only a few lines of code with a fast enumeration loop: