🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[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 ``` ### 通过源码编译