Guest User

Untitled

a guest
May 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. void SetupButtons()
  2. {
  3. var tapGestureRecognizer = new UITapGestureRecognizer(ViewTapped);
  4. View.AddGestureRecognizer(tapGestureRecognizer);
  5. View.UserInteractionEnabled = true;
  6. }
  7.  
  8. public override void ViewDidLoad()
  9. {
  10. base.ViewDidLoad();
  11. InitializeAgoraEngine();
  12. SetupVideo();
  13. JoinChannel();
  14. SetupLocalVideo();
  15. HideVideoMuted();
  16. SetupButtons();
  17. }
Add Comment
Please, Sign In to add comment