ios 强制改变某一页面屏幕方向

来源:互联网 发布:小米电视 直播软件 编辑:程序博客网 时间:2024/06/03 15:03


- (void)viewWillAppear:(BOOL)animated

{

    UIInterfaceOrientation*orientation  =UIInterfaceOrientationLandscapeLeft;// 屏幕方向参数

        SEL selector = NSSelectorFromString(@"setOrientation:");

        NSInvocation *invocation = [NSInvocationinvocationWithMethodSignature:[UIDeviceinstanceMethodSignatureForSelector:selector]];

        [invocation setSelector:selector];

        [invocation setTarget:[UIDevicecurrentDevice]];

        int val = orientation;

        [invocation setArgument:&val atIndex:2];

        [invocation invoke];

}