我已经使用CocoaPods将 GitHub 的Mantle项目添加到 iOS 6 项目中:
$ pod search Mantle
$ vim Podfile // here I added pod 'Mantle'
$ pod install // this installs Mantle 1.0
然后我在自定义搜索路径之前($inherited)
将变量添加到Header Search Paths
项目的“构建设置”部分。导入 Mantle 头文件时,Xcode 抱怨
#import "Mantle.h" // => 'Mantle/MTLJSONAdapter.h' file not found
我错过了一些步骤吗?我还安装了其他 pod(AFNetworking 和 SSKeychain),但只有 Mantle 给我带来了问题。
我还添加了 SSToolkit,但遵循其“入门”中的说明,即不使用 CocoaPods。