Skip to content

Instantly share code, notes, and snippets.

@cardoso
Last active May 25, 2020 22:53
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 cardoso/38888c61c387f594094a3299f8309b15 to your computer and use it in GitHub Desktop.
Save cardoso/38888c61c387f594094a3299f8309b15 to your computer and use it in GitHub Desktop.
extension WatchViewController {
func setupViews() {
setupVideoView()
setupChatView()
}
func setupVideoView() {
view.addSubview(videoView)
}
func setupChatView() {
addChild(chatViewController)
view.addSubview(chatViewController.view)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment