本文介绍了快速项目中的Sinch集成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用 cocoapods $ c将
解决方案
问题是我没有添加 Bridging-Header.h
#import< Sinch / Sinch.h>
I'm trying to integrate sinch into my Swift project using cocoapods
#platform :ios, '9.0'
use_frameworks!
target 'auxilium' do
pod 'Alamofire', '~> 4.0'
pod 'SinchRTC'
end
The pod installation work fine but when I try to import the library import Sinch
I get this error
Any helps here what I've missed !!! thanks
PlusI've noticed that my pod doesn't exist in targets :
解决方案
The problem that was that I didn't add the Bridging-Header.h
#import <Sinch/Sinch.h>
这篇关于快速项目中的Sinch集成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!