youtube嵌入了视频iphone

Jaz*_*uch 6 youtube iphone

我正在尝试使用此URL中的技术在iPhone应用中播放YouTube视频http://iphoneincubator.com/blog/audio-video/how-to-play-youtube-videos-within-an-application

该技术工作正常,视频播放正常,但我希望视频在完成时切换回主视图.当我点击youtube播放器的"完成"按钮时,它会转回主视图,但当视频播完时,youtube播放器不会消失(你必须点击"完成")

请帮忙!

NAN*_*NAV 0

 NSURL *url = [[NSURL alloc]initWithString:@"url for video"];   
        self.backgroundColor=[UIColor redColor];
        moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];  
        [moviePlayer.view setFrame:CGRectMake(0,0,self.frame.size.width-10,self.frame.size.height-10)];
        moviePlayer.controlStyle =  MPMovieControlStyleNone; 
        moviePlayer.shouldAutoplay=YES;
        moviePlayer.repeatMode = NO;  
        [moviePlayer setFullscreen:YES animated:YES];  
        [moviePlayer prepareToPlay];
        pause=NO;
        [self.view addSubview:moviePlayer.view];
Run Code Online (Sandbox Code Playgroud)