这是我第一次使用CocoaPods。到目前为止,我已经能够包含一个库,用我需要的库创建第一个工作区。这是我的podfile:
platform :ios, '8.0'
use_frameworks!
target 'SDK-auth' do
pod 'AFOAuth2Manager', '~> 2.2'
end
现在我正在尝试在我的项目中使用AFOAuth2Manager
lib,这是我的问题......我要做些什么来包含它?目前我正在写类似
@import AFOAuth2Manager;
但我收到此错误:Could not build module AFOAuth2Manager
这是包含模块的正确方法吗?或者我做错了什么?