var request:Alamofire.Request?使用未申报的Alamofire

时间:2016-11-08 16:53:40

标签: ios xcode swift3 alamofire

我正在将我的swift 2.2代码转换为Xcode 8中的swift3代码,我有这一行:

var request: Alamofire.Request?

产生此错误:

Use of undeclared type Alamofire. 

如何修复此错误?我已阅读迁移指南,但我没有看到任何有助于我的内容。我正在使用Alamofire 4.0.1

1 个答案:

答案 0 :(得分:2)

代码本身没问题。问题很可能是导入Alamofire模块

请尝试以下步骤:

    您需要使用Alamofire模块的swift文件中的
  1. import Alamofire(如果需要,可以使用@import Alamofire桥接标头)
  2. 清洁(Cmd + Shift + K)
  3. 构建项目
  4. 如果您看到No such module错误,则应从终端运行pod install命令并打开生成的工作区而不是项目本身。