我看过 iPhone MP 电影播放器的示例应用程序 - 控制器。
他们在示例代码上添加了通知。
// Register to receive a notification that the movie is now in memory and ready to play
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePreloadDidFinish:)
name:MPMoviePlayerContentPreloadDidFinishNotification
object:nil];
在上面的代码中,当 MPMoviePlayerController 完成加载时,它会调用 moviePreloadDidFinish 方法。
同样,我想在用户从导航栏按下后退按钮时触发一个方法(通过导航控制器返回上一个视图控制器)。
我不知道如何为此添加通知。