Guest User

Untitled

a guest
Feb 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. fondoLogin.Add (mpPlayer.View);
  2. //fondoLogin.AddSubview (mpPlayer.View);
  3.  
  4. mpPlayer.View.Frame = new CGRect (0, 0, View.Frame.Width, View.Frame.Height);
  5.  
  6. mpPlayer.SourceType = MPMovieSourceType.Streaming;
  7. mpPlayer.SetFullscreen (true, true);
  8. mpPlayer.PrepareToPlay ();
  9. mpPlayer.ShouldAutoplay = true;
  10. videoEndNotificationToken = NSNotificationCenter.DefaultCenter.AddObserver
  11. (AVPlayerItem.DidPlayToEndTimeNotification, VideoDidFinishPlaying, mpPlayer);
  12. mpPlayer.RepeatMode = MPMovieRepeatMode.One;
  13. mpPlayer.Play ();
Add Comment
Please, Sign In to add comment