快速项目中的Sinch集成

时间:2016-12-14 15:30:32

标签: ios swift swift3 cocoapods sinch

我正在尝试使用cocoapods

sinch集成到我的Swift项目中
#platform :ios, '9.0'
use_frameworks!

target 'auxilium' do
  pod 'Alamofire', '~> 4.0'
  pod 'SinchRTC'
end

pod安装工作正常,但是当我尝试导入库import Sinch时,我收到此错误

  

没有这样的模块“Sinch”

在这里有任何帮助,我错过了!谢谢

我注意到我的pod在目标中不存在: enter image description here

2 个答案:

答案 0 :(得分:3)

问题是我没有添加Bridging-Header.h

#import <Sinch/Sinch.h>

答案 1 :(得分:0)

无需导入

#import<Sinch/Sinch.h>

您可以直接访问以下代码的示例,而无需导入如下代码:

let config = Sinch()

供参考,您可以在此处查看:No Such Module "Sinch" Xcode 9.1 Swift 4