我正在尝试使用cocoapodssinch集成到我的Swift项目中

#platform :ios, '9.0'
use_frameworks!

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

Pod安装工作正常,但是当我尝试导入库import Sinch时出现此错误

没有这样的模块“Sinch”

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


我注意到我的吊舱在目标中不存在:
ios - 快速项目中的Sinch集成-LMLPHP

最佳答案

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

#import <Sinch/Sinch.h>

关于ios - 快速项目中的Sinch集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41146336/

10-15 15:26