使用MPMoviePlayerController开发小播放器

本文详细介绍了如何使用MPMoviePlayerController在iOS应用中开发播放器,并在点击全屏和返回全屏按钮时进行代码操作,实现播放器从小播放器到大播放器的无缝切换。

使用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 sharedApplicationsetStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];

                                // 在其中调整相关视图的尺寸

                                [selfwillAnimateRotationToInterfaceOrientation:UIInterfaceOrientationPortraitduration:0];

                    }

        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值