Guest User

Untitled

a guest
May 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. partial void StartCallClick(NSObject sender)
  2. {
  3. if (string.IsNullOrWhiteSpace(channelNameTextField.Text))
  4. {
  5. channelName.Text = "Please input channel name to proceed";
  6. }
  7. else
  8. {
  9. var storyboard = UIStoryboard.FromName("Main", null);
  10. var controller = storyboard.InstantiateViewController("VideoCallView");
  11. VideoCallViewController.Channel = channelNameTextField.Text;
  12. this.ShowViewController(controller, this);
  13. }
  14. }
Add Comment
Please, Sign In to add comment