当我使用MPMoviePlayerViewController时,似乎无法将modalTransitionStyle更改为默认的向上滑动动画之外的任何其他内容。
还有其他人设法使它起作用吗?
MPMoviePlayerViewController* theMoviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL fileURLWithPath:videoURL]];
theMoviePlayer.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; // doesn't work
[self presentMoviePlayerViewControllerAnimated:theMoviePlayer];
谢谢
最佳答案
看着
http://www.drobnik.com/touch/2010/07/the-3-2-hurdle-of-mpmovieplayercontroller/
似乎那里的代码也将表示modalTransitionStyle
实例的视图控制器的MPMoviePlayerViewController
设置为相同的值。那样有用吗?