多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 权限设置 ## 引入webrtc库 ### 通过podfile引入 Podfile: ``` source 'https://github.com/CocoaPods/Specs.git' platform :ios,'13.5' target 'web' do pod 'GoogleWebRTC' end ``` 执行指令: ``` pod install ``` [安装pod](%E5%AE%89%E8%A3%85pod.md) 生成了一个 WebRTCForIOS.xcworkspace,该文件关联了pod文件: ``` open WebRTCForIOS.xcworkspace ``` ### 通过源码编译