这个问题可能是这个“Sinch Integration in swift project”的重复,但是我正在执行所有这些步骤,但是却得到相同的错误“没有这样的模块'Sinch'。在我遵循的以下步骤中,请检查并让我知道我是否错过任何步骤或需要添加? ?

我已经在我的podfile中添加了它:
“SinchRTC”广告连播

Pod已成功安装,没有警告:ios - 没有这样的模块“Sinch” Xcode 9.1 Swift 4-LMLPHP

在Bridge-Header文件中添加了此内容:

#import<Sinch/Sinch.h>

注意:更新pod超过10次,并多次重启xcode。 ios - 没有这样的模块“Sinch” Xcode 9.1 Swift 4-LMLPHP

最佳答案

我对cocoapod和Bridge-Header做过同样的事情,发现您不需要在标头中添加import Sinch

您可以直接使用它而无需导入。检查以下屏幕截图:

ios - 没有这样的模块“Sinch” Xcode 9.1 Swift 4-LMLPHP

Pod档案:

target 'test' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

pod 'Alamofire', '~> 4.0'
pod 'SinchRTC'

  # Pods for test

end

桥头文件:
#import <Sinch/Sinch.h>

检查Example项目以获取更多信息。

关于ios - 没有这样的模块“Sinch” Xcode 9.1 Swift 4,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47843107/

10-12 06:18