0
私はストリーミングビデオをフルスクリーンで開始し、ユーザーに "完了"ボタンを押すようにする簡単な方法を書いています。問題は、私はMPMediaPlayerControllerビューを削除することができない、またはおそらく私は間違った方法でそれをやっている。MPMediaPlayerControllerビューを終了する
- (IBAction)playVideoButtonPressed:(id)sender {
NSURL *url = [NSURL URLWithString:@"http://mysite.com/video.mov"];
mp = [[MPMoviePlayerController alloc] initWithContentURL: url];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayerPlaybackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:nil];
if ([mp respondsToSelector:@selector(setFullscreen:animated:)]) {
mp.controlStyle = MPMovieControlStyleFullscreen;
mp.shouldAutoplay = YES;
[self.view addSubview:mp.view];
[mp.view setTag:3];
[mp setFullscreen:YES animated:YES];
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:mp];
[mp play];
}
- (void)moviePlayBackDidFinish:(id)sender {
NSLog(@"Quitting MoviePlayer");
[mp.view removeFromSuperview];
}
アイデアはMPMediaPlayerControllerビューはアプリ内のボタンをクリックすると呼ばれているということであり、それは「完了」のビデオをクリックしたりするとき、ビデオが終了によって却下されます。