Swift 使用CocoaPods导入Alamofire,却识别不到Alamofire

像往常使用CocoaPods导入第三方库一样,在Podfile文件添加pod 'Alamofire',然后在使用终端pod install

use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'#公有库地址
target '项目名称' do
  pod 'Alamofire'
end

然后在需要调用的地方导入Alamofire

import Alamofire

然而运行却报错:无法识别Alamofire
解决方法:


参考文章:

73-Swift之Pods(CocoaPods)的Alamofire的引入的详细指导

你可能感兴趣的:(Swift 使用CocoaPods导入Alamofire,却识别不到Alamofire)