在 Core Data 中存储负整数
我可以正确地为托管对象模型实例的属性分配和检索正整数。但是,为此属性分配一个负整数会将数字“4294967295”记录到我的核心数据持久存储(一个 xml 文件)中。因此,当应用程序重新加载并重新实例化托管对象时,该属性将读取“4294967295”。
该属性在我的 DataModel 中指定为 Integer 32 类型,并且“最小值”为“-12”。我猜这与将负整数存储为字符串有关。此代码产生相同的“4294967295”:
NSLog(@"Log -1: %u", -1);
=> "Log -1: 4294967295"
在核心数据中存储负整数的正确方法是什么?
I can properly assign and retrieve a positive integer to an attribute of a managed object model instance. However, assigning a negative integer to this attribute records the number "4294967295" to my core data persistant store (an xml file). Thus, when the application reloads and the managed object is re-instantiated, the attribute reads "4294967295".
This attribute is specified in my DataModel as type Integer 32 and has a "Min Value" of "-12". I'm guessing this has something to do with storing negative integers as strings. This code produces the same "4294967295":
NSLog(@"Log -1: %u", -1);
=> "Log -1: 4294967295"
What's the proper way to store a negative integer in Core Data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是核心数据的问题,而是格式说明符的问题。
%u
表示您希望参数格式化为无符号整数,不能为负数。请使用%d
或%i
(这些表示有符号整数)。It's not a problem with Core Data, it's a problem with your format specifier.
%u
means that you want the argument formatted as an unsigned integer, which cannot be negative. Use%d
or%i
instead (these mean signed integers).