iOS两个强制旋转屏幕的方法

来源:未知 责任编辑:责任编辑 发表时间:2015-09-16 20:03 点击:
第一个: p> 
// 状态栏动画持续时间  
CGFloat duration = [UIApplication sharedApplication].statusBarOrientationAnimationDuration;  
[UIView animateWithDuration:duration animations:^{  
    // 修改状态栏的方向及view的方向进而强制旋转屏幕  
    [[UIApplication sharedApplication] setStatusBarOrientation:_bottomView.landscapeModel ? UIInterfaceOrientationLandscapeRight : UIInterfaceOrientationPortrait];  
    self.navigationController.view.transform = _bottomView.landscapeModel ? CGAffineTransformMakeRotation(M_PI_2) : CGAffineTransformIdentity;  
    self.navigationController.view.bounds = CGRectMake(self.navigationController.view.bounds.origin.x, self.navigationController.view.bounds.origin.y, self.view.frame.size.height, self.view.frame.size.width);  
}];  

 

p> 

p> 

p>第二个:

p>非arc:

p> 
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {  
  [[UIDevice currentDevice] performSelector:@selector(setOrientation:)  
  withObject:(id)UIInterfaceOrientationLandscapeRight];  
  }  

 

p> 

p>arc下:

p>
 
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {  
            SEL selector = NSSelectorFromString(@"setOrientation:");  
            NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];  
            [invocation setSelector:selector];  
            [invocation setTarget:[UIDevice currentDevice]];  
            int val = UIInterfaceOrientationLandscapeRight;  
            [invocation setArgument:&val atIndex:2];  
            [invocation invoke];  
        }  

 


    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Lexical or Preprocessor Issue 'xxx.h
    • ios学习笔记(二)xcode 4.3.2下实现基本交互
    • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
    • UITableView一些方法
    • IOS类似iphone通讯录TableView的完整demo【附源码】
    • ios版本的helloworld
    • iPhone SDK开发:本地文本文件内容的读取
    • 如何为Iphone应用创建启动界面
    • 去掉屏幕键盘的方法
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1