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.
我正在使用 XCode 4.3。我可以导入:
#import <RestKit/RestKit.h>
但由于某种原因,它将无法找到:
#import <RestKit/Network/RKRequestSerialization.h>
安装说明是为 XCode 4.2 编写的,因此在如何设置派生数据位置方面存在不匹配。XCode 4.3 有更多选项,我选择了“唯一”单选按钮选择。还有什么我可能会丢失的吗?
想通了,也许吧。显然,在 RestKit v0.10.0 中,您可以从 RestKit 根目录访问所有标头:
#import <RestKit/RKRequestSerialization.h>
查看构建结果,发现复制命令不再将其复制到 RestKit/Network 文件夹。