使用MPMoviePlayerController开发小播放器跟大播放期差不多,就是点击全屏和返回全屏按钮时需要代码操作一下:
- (void)fullScreenButtonClicked {
// 播放器的高
float playerHeight = _mp.view.frame.size.height;
if (playerHeight <= kSmallPlayerHeight) {
// 此时为小播放器
self.view.transform =CGAffineTransformMakeRotation(M_PI *0.5);
[[UIApplicationsharedApplication]setStatusBarOrientation:UIInterfaceOrientationLandscapeRightanimated:NO];
// 在其中调整相关视图的尺寸
[selfwillAnimateRotationToInterfaceOrientation:UIInterfaceOrientationLandscapeRightduration:0];
}
else {
// 此时为大播放器
self.view.transform =CGAffineTransformMakeRotation(0);
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];
// 在其中调整相关视图的尺寸
[selfwillAnimateRotationToInterfaceOrientation:UIInterfaceOrientationPortraitduration:0];
}
}
本文详细介绍了如何使用MPMoviePlayerController在iOS应用中开发播放器,并在点击全屏和返回全屏按钮时进行代码操作,实现播放器从小播放器到大播放器的无缝切换。
289

被折叠的 条评论
为什么被折叠?



