RestKit:属性“映射器”在“RKObjectManager *”类型的对象上找不到

发布于 2024-12-05 12:14:25 字数 341 浏览 2 评论 0原文

使用新的 Xcode 和 RestKit 我遇到了映射器的问题。错误是:在“RKObjectManager *”类型的对象上找不到属性“映射器”

// Initialize RestKit
NSString* baseUrl = @"http:////172.13.12.17:3000";
RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURL:baseUrl];

RKObjectMapper* mapper = objectManager.mapper;

有人知道我如何解决这个问题吗?谢谢,凡妮莎

Using the new Xcode and RestKit I am facing a problem with the mapper. The error is: Property 'mapper' not found on object of type 'RKObjectManager *'

// Initialize RestKit
NSString* baseUrl = @"http:////172.13.12.17:3000";
RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURL:baseUrl];

RKObjectMapper* mapper = objectManager.mapper;

Does someone knows how I could fix this? Thx, Vanessa

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

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

发布评论

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

评论(1

ま柒月 2024-12-12 12:14:25

在最新的 RestKit master 分支上,对象映射已被完全重新设计,使得 RKObjectManager 类中不再存在映射器属性。您可能会在使用旧的对象映射代码示例时遇到问题,该代码示例是在映射子系统进行重大检修之前编写的。

On the latest RestKit master branch, object mapping has been completely reworked, such that the mapper property no longer exists on the RKObjectManager class. You're probably running into issues following an old code example for object mapping that was written prior to the major overhaul of the mapping subsystem.

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