首页 > 其他 > 详细

特定页面实现旋转效果

时间:2016-01-15 15:59:15      阅读:253      评论:0      收藏:0      [点我收藏+]

1.在AppDelegate.h 里添加标记

技术分享

2.在AppDelegate.m 里添加这个方法

技术分享

3.打开屏幕旋转

[(AppDelegate*)[UIApplication sharedApplication].delegate setAllowRotation:YES];

 

4.取消屏幕旋转

    [(AppDelegate*)[UIApplication sharedApplication].delegate setAllowRotation:NO];

    [[NSNotificationCenter defaultCenterremoveObserver:self];

    if ([[UIDevice currentDevicerespondsToSelector:@selector(setOrientation:)]) {

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

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

        [invocation setSelector:selector];

        [invocation setTarget:[UIDevice currentDevice]];

        int val = UIInterfaceOrientationPortrait;

        [invocation setArgument:&val atIndex:2];

        [invocation invoke];

    }

 

特定页面实现旋转效果

原文:http://www.cnblogs.com/razaios/p/5133194.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!