仍然收到错误"没有这样的模块' SwiftyDropbox'"

时间:2016-12-23 01:14:02

标签: ios swift3 dropbox-api swiftydropbox

我遇到与this question相同的问题。他的问题几乎与我的问题相同。事实上,我们正在关注the same tutorial。但是,解决了他的问题的the answer对我来说并不起作用。我通过.xcodeworkspace打开了我的项目,我仍然收到错误"没有这样的模块' SwiftyDropbox'"。

这里是AppDelegate.swift的代码

enter image description here

info.plist

enter image description here

和Pods

enter image description here enter image description here

Podfile

enter image description here

1 个答案:

答案 0 :(得分:2)

您需要在计算机上安装CocoaPods,如果您还没有这样做的话。根据这个Ray Wenderlich Tutorial on Cocoapods,我在这里做了什么。

==开始一次性设置资料==

第1步,来自终端(仅当您还没有这样做时): 检查您是否安装了cocoapods: pod --version

如果您已安装它,请继续执行步骤3.否则,按如下方式安装CocoaPods:

sudo gem install cocoapods

第2步,来自终端: pod setup --verbose

==结束一次设置资料==

第3步,来自终端: cd ~/Path/To/Folder/Containing/YourProject 然后... pod init

第4步,来自终端: open -a Xcode Podfile

第5步,来自Xcode:

# Pods for GaethrExample下面为您的CocoaPod添加一行:

pod 'SwiftyDropbox'

第6步,来自Xcode:

关闭Xcode

第7步,从项目所在目录中的终端开始。如果您不确定,请输入pwd,它会为您提供工作目录。重新进入。

pod install

Nuke派生数据并以 WORKSPACE!重新打开您的项目。清理缓存并重建。 You've just installed your first CocoaPod.