iPhone應用中使用MPMoviePlayerController視頻播放

iPhone應用中使用MPMoviePlayerController視頻播放

iPhone應用中使用MPMoviePlayerController視頻播放是本文要介紹的內容,內容很少,主要是基於代碼來實現如何使用MPMoviePlayerController視頻播放的內容,具體內容來看本文詳解, html

//http://www.baisoujs.com

 
 
 
 

 

 

  
  
  
  
  

 
  1.  -(void)openMovie:(id)sender    
  2. {    
  3. NSString *path = [[NSBundle mainBundle] pathForResource:@"movie" ofType:@"m4v"];    
  4. MPMoviePlayerController *movieController = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:path]]; 
  5. //設置要播放的視頻的位置    
  6.  
  7.  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinish:) name:
  8. MPMoviePlayerPlaybackDidFinishNotification object:movieController]; //設置視頻播放結束後的回調處理     
  9.     [movieController play]; //視頻播放    
  10. }  
 
  1. -(void)movieFinish:(NSNotification*)notification    
  2.     
  3.   MPMoviePlayerController *movieController = [notification object];    
  4.    [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:movieController];    
  5.    [movieController release]; //釋放資源    
  6.     movieController = nil;    
  7.    [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:YES];    
  8.   

小結:iPhone應用中使用MPMoviePlayerController視頻播放的內容介紹完了,但願經過本文的學習能對你有所幫助! 學習

原文: http://www.baisoujs.com/detail_136976458092290.html
相關文章
相關標籤/搜索