我试图在我的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)。将二进制文件链接到库和复制包资源都是空的。
谢谢

最佳答案

您必须在计划使用OAuth的地方导入OAuthSwift。
在这样做之前,您需要将oauthswift添加到链接的框架和库中。
但是,我更喜欢使用cocoa pods向项目添加依赖项。
这里有一个链接“如何安装椰子荚”
2:下面是安装可可豆的方法

08-26 18:02