码迷,mamicode.com
首页 > 其他好文 > 详细

特定页面实现旋转效果

时间:2016-01-15 16:01:59      阅读:173      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!