我发现“模态视图控制器”在iOS4中可能会有一些变化。因为,我使用下面的示例代码 http://iosdevelopertips.com/video/getting-mpmovieplayercontroller-to-cooperate-with-ios4-3-2-ipad-and-earlier-versions-of-iphone-sdk.html
使用按钮执行电影播放器控制器。在iOS3中,页面控件在解除模态视图控制器后仍然可以工作。但是在iOS4中没有,我需要按左上角的导航栏返回然后再单击该单元格返回视图,然后页面控件将再次运行。
导致此问题的主要原因是什么?
答案 0 :(得分:1)
下面的代码复制并通过TestViewController ..Becoz Here AutoRelease the CustomMoviePlayer
- (void)loadMoviePlayer
{
// Play movie from the bundle
NSString *path = [[NSBundle mainBundle] pathForResource:@"Movie-1" ofType:@"mp4" inDirectory:nil];
// Create custom movie player
moviePlayer = [[CustomMoviePlayerViewController alloc] initWithPath:path];
// Show the movie player as modal
[self presentModalViewController:moviePlayer animated:YES];
// Prep and play the movie
[moviePlayer readyPlayer];
}