未声明的对象,但一切都已实现

发布于 2024-11-17 15:04:28 字数 805 浏览 3 评论 0原文

我实现了第一个 Three20(第一个,使用 Python Scrip),然后实现了 RestKit(第二个,手动)。 我开始向我的应用程序委托添加一些内容,但随后出现错误[RKObjectLoaderTTModel undeclared。其他对象 RKClientRKObjectManager 工作正常。

// work
[RKClient clientWithBaseURL:APP_BASE_URL username:USER_EMAIL password:USER_PASSWORD];
RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURL:APP_BASE_URL];
//fail
[RKObjectLoaderTTModel setDefaultRefreshRate:1];

查看 RestKit/Build/RestKit/Three20 我可以看到 RKObjectLoaderTTModel 标头。

我添加了所有标题搜索路径等,页。

我认为在查看我的项目时,您可以获得更好的视图,所以这就是它(尚未完成任何操作,因此共享没有问题): http://dl.dropbox.com/u/80699/project_for_stack.zip

希望有人可以提供帮助。

i implemented first three20 (first, with the python scrip) and then restkit (second,manual).
i started adding some stuff to my app delegate, but then i get an error [RKObjectLoaderTTModel undeclared. Other Objects RKClient or RKObjectManager work fine.

// work
[RKClient clientWithBaseURL:APP_BASE_URL username:USER_EMAIL password:USER_PASSWORD];
RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURL:APP_BASE_URL];
//fail
[RKObjectLoaderTTModel setDefaultRefreshRate:1];

looking into RestKit/Build/RestKit/Three20 i can see RKObjectLoaderTTModel header.

i added all header search paths, etc , pp.

i think you get a better view, when looking into my project, sohere is it (have nothing done yet, so no problem with sharing): http://dl.dropbox.com/u/80699/project_for_stack.zip

hopefully somebody can help.

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

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

发布评论

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

评论(1

水波映月 2024-11-24 15:04:28
#import <RestKit/Three20/Three20.h>

必须显式导入restkit Three20的东西。

希望这对某人有帮助。现在一切都运行良好。

#import <RestKit/Three20/Three20.h>

had to import explicit the restkit three20 stuff.

hope this helps somebody. now everything runs fine.

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