ios github 未声明的标识符 AFHTTPRequestOperation

ios github undeclared identifier AFHTTPRequestOperation

我在 Github 中创建了我的项目的 repo,我在我的项目中使用了 AFNetworking cocoapod。当我从 github 下载我的项目并尝试在 xcode 中 运行 时,它会引发类似 'undeclared identifier AFHTTPRequestOperation'

的错误

谁能帮我解决这个问题。

看来您还没有将您的 pod 项目推送到 repo。

转到你的project/pod目录和运行命令

pod install

为了将来从 .gitignore 文件中删除 pod(如果有的话)。


如果问题仍然存在,请编辑您的 pod 文件并添加

pod 'AFNetworking', '~> 2.5

然后运行相同的命令

pod install