2012-02-17 49 views
1

我是新手爲ios開發,我正在一個項目,我需要顯示一些示例視頻。如何在iPhone SDK中播放像你一樣的視頻播放器?

我想以流媒體格式(youtube播放器)播放視頻。

-(void) playVideoOfURL:(NSString*)videoPath 
{ 
    NSString *url = [NSString stringWithFormat:@"%@%@",TipsService,videoPath]; 

    moviePlayer = [[ MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:url]]; 
    if (moviePlayer) 
    { 

     moviePlayer.view.frame = CGRectMake(0, 0, 320, 460); 
     moviePlayer.scalingMode = MPMovieScalingModeAspectFill; 
     moviePlayer.controlStyle = MPMovieControlStyleDefault; 
     moviePlayer.movieSourceType = MPMovieSourceTypeFile; 
     moviePlayer.useApplicationAudioSession = YES; 
     //Register for the playback finished notification. 
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMovieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer]; 
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMovieFinishedCallback:) name:MPMoviePlayerDidExitFullscreenNotification object:moviePlayer]; 

     //setup device rotation notification observer 
     [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; 
     [[NSNotificationCenter defaultCenter] addObserver:self 
               selector:@selector(didRotate:) 
                name:UIDeviceOrientationDidChangeNotification 
                object:nil]; 

     UIViewController *player = [[UIViewController alloc] init]; 
     player.view = moviePlayer.view; 

     [self.navigationController pushViewController:player animated:YES]; 
     [moviePlayer play]; 
     [moviePlayer setFullscreen:TRUE]; 

    } 
} 

我試過這個,但沒用。請幫我...

+0

歡迎StackOverflow上。在提問時,請儘量保持描述性。當你說你嘗試過,但它是「沒用」,請解釋爲什麼這是沒用的,你試圖使它工作等等。 – 2012-02-17 14:41:59

回答

1

試試這個

[moviePlayer play]; 
[moviePlayer setFullscreen:TRUE]; 
UIViewController *player = [[UIViewController alloc] init]; 
player.view = moviePlayer.view; 

[self.navigationController pushViewController:player animated:YES]; 
相關問題