Skip to content

Instantly share code, notes, and snippets.

@zontan
Created November 10, 2020 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zontan/6af5ba0ac5ec08ef9eb51c3a975e9938 to your computer and use it in GitHub Desktop.
Save zontan/6af5ba0ac5ec08ef9eb51c3a975e9938 to your computer and use it in GitHub Desktop.
func setupLocalVideo(uid: UInt) {
let videoView = UIView()
videoView.tag = Int(uid)
videoView.backgroundColor = UIColor.orange
let videoCanvas = AgoraRtcVideoCanvas()
videoCanvas.uid = uid
videoCanvas.view = videoView
videoCanvas.renderMode = .hidden
agoraKit.setupLocalVideo(videoCanvas)
stackView.addArrangedSubview(videoView)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment