OAuthSwift - “没有这样的模块OAuthSwift”

时间:2015-05-22 16:36:10

标签: api swift github frameworks oauth-2.0

我正在尝试在我的swift应用程序中使用OAuthSwift框架,当我import swift时,我收到错误“没有这样的模块'OAuthSwift'。

我按照github中的以下说明阅读:

Drag OAuthSwift.xcodeproj to your project in the Project Navigator.
Select your project and then your app target. Open the Build Phases panel.
Expand the Target Dependencies group, and add OAuthSwift framework.
import OAuthSwift whenever you want to use OAuthSwift.

我的支持文件中有OAuthSwift.xcodeproj

在目标依赖项中,我有OAuthSwift (OAuthSwift)。链接二进制文件与库和复制包资源都是空白的。

由于

2 个答案:

答案 0 :(得分:0)

您必须在计划使用OAuth的地方导入OAuthSwift。

在此之前,您需要将OAuthSwift添加到Linked Frameworks和Libraries中。

但是,我更喜欢使用可可豆荚为你的项目添加依赖项。

这是一个链接“如何安装Cocoapods” 2:以下是安装CocoaPods的方法

答案 1 :(得分:0)

我有同样的问题

我做的是:

查看应用目标 - >一般:嵌入二进制文件(右键单击,在查找器中打开)

OAuthSwift.Framework拖到“app-name-folder”下的项目中,组合图标应显示在“OAuthSwift.framework”旁边,然后再将其导入嵌入式二进制文件并删除OAuthSwift.xcodeproj (不再需要)

让我知道这一切是怎么回事