未声明的对象,但一切都已实现
我实现了第一个 Three20(第一个,使用 Python Scrip),然后实现了 RestKit(第二个,手动)。 我开始向我的应用程序委托添加一些内容,但随后出现错误[RKObjectLoaderTTModel undeclared
。其他对象 RKClient
或 RKObjectManager
工作正常。
// 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须显式导入restkit Three20的东西。
希望这对某人有帮助。现在一切都运行良好。
had to import explicit the restkit three20 stuff.
hope this helps somebody. now everything runs fine.