【发布时间】:2016-07-08 18:20:51
【问题描述】:
我正在运行 Xcode 版本 7.3 (7D175) 并想试用 Restkit for ios。 所以我开始关注this 教程。我来到了这部分:
$ sudo gem install cocoapods
$ pod setup
$ cd /path/to/CoffeeKit
$ touch Podfile
$ [edit] Podfile (using your preferred editor; vim, nano, etc)
platform :ios, '5.0'
pod 'RestKit', '~> 0.20.0'
然后我运行了 pod install。关于一些问题和谷歌搜索,我更新到了新版本的 cocoapods ,现在我的 pod 文件看起来像
target "Reminder" do
platform :ios, '9.3'
pod 'RestKit', '~> 0.20.0'
end
现在,当我尝试构建我的项目时,我得到了错误:
\'RKObjectManager.h' file not found
Stack overflow has this answer
我尝试添加标题搜索路径中提到的任何内容,但它没有修复它。我是iOS新手,很抱歉这个愚蠢的问题
【问题讨论】:
标签: ios configuration cocoapods restkit