私はそのボタンをクリックすると、再生中のビデオが停止する機能を持つ戻るボタンを作成しようとしています。 私の場合、スーパービューからは削除されますが、ビデオはまだバックグラウンドで再生されています。 私は以下のようにやっているが、それは以下に背中のボタンアクションイベントを交換iphone:「戻る」ボタンをクリックしてビデオを再生する方法を教えてください。
-(IBAction)backButtonPressed
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieDidExitFullScreen:) name:MPMoviePlayerPlaybackDidFinishNotification object:player];
[self.navigationController popViewControllerAnimated:YES];
}
- (void) movieDidExitFullScreen:(NSNotification*)notification
{
[[NSNotificationCenter defaultCenter] removeObserver: self
name:MPMoviePlayerPlaybackDidFinishNotification
object: [notification object]];
MPMoviePlayerController *theMovie1 = [notification object];
[self.navigationController popViewControllerAnimated:YES];
[theMovie1 release];
}