// // RotationScreen.h // AGPlayer // // Created by 吴书敏 on 16/8/3. // Copyright © 2016年 littledogboy. All rights reserved. // #import #import @interface RotationScreen : NSObject /** * 切换横竖屏 * * @param orientation UIInterfaceOrientation */ + (void)forceOrientation:(UIInterfaceOrientation)orientation; /** * 是否是横屏 * * @return 是 返回yes */ + (BOOL)isOrientationLandscape; @end