Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Json 响应返回一个 64 位的值。我需要将此 64 位值映射到我的 iOS 模型。
如何进行映射?我最初使用的是 NSInteger 类型,但它只有 32 位。
如果我在我的 iOS 模型中使用 int64_t,则映射不是由 restkit 完成的。
如何解决我的问题?是否可以在 Restkit 中定义我们自己的映射?
您需要确保您的属性是 NSNumber 类型,然后在对象映射之后您可以使用-(NSInteger)longLongValue方法提取您需要的内容。
-(NSInteger)longLongValue