关于iOS6.0 屏幕旋转的问题

来源:未知 责任编辑:智问网络 发表时间:2013-11-12 17:14 点击:

1、首先在appDelegate中,把view添加到window中有两种方式、


[cpp]
self.window.rootViewController = self.view; 
[self.window addSubview:self.view.view]; 

    self.window.rootViewController = self.view;
    [self.window addSubview:self.view.view];
但是如果用第二种的话,在ios6.0中 再去设置屏幕旋转是没有任何效果的,必须使用第一种。在ios6.0以前的版本是没有这种分别的。

2、 开启全部方向屏幕旋转的方式

iOS6.0之前: 只需这个方法返回yes即可

[cpp] www.2cto.com
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 

    return YES; 

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
    {
     return YES;
    }   iOS6.0中  需要这三个方法一起使用才可以

[cpp]
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 

    return (toInterfaceOrientation != UIInterfaceOrientationMaskPortraitUpsideDown); 

- (BOOL)shouldAutorotate 

    return YES; 

- (NSUInteger)supportedInterfaceOrientations 

    return UIInterfaceOrientationMaskAllButUpsideDown; 

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
    {
     return (toInterfaceOrientation != UIInterfaceOrientationMaskPortraitUpsideDown);
    }
    - (BOOL)shouldAutorotate
    {
     return YES;
    }
    - (NSUInteger)supportedInterfaceOrientations
    {
     return UIInterfaceOrientationMaskAllButUpsideDown;
    }当然了关闭全部方向屏幕旋转的方式则把上面的返回值改为no即可

iOS6.0之前:

[cpp]
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 

    return NO; 

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
    {
     return NO;
    }   iOS6.0中

[cpp]
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 

return (toInterfaceOrientation == UIInterfaceOrientationPortrait); 

- (BOOL)shouldAutorotate 

return NO; 

- (NSUInteger)supportedInterfaceOrientations 

    return UIInterfaceOrientationMaskPortrait;//只支持这一个方向(正常的方向)  

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
    {
    return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
    }
    - (BOOL)shouldAutorotate
    {
    return NO;
    }
    - (NSUInteger)supportedInterfaceOrientations
    {
        return UIInterfaceOrientationMaskPortrait;//只支持这一个方向(正常的方向)
    }

使用屏幕旋转常用的方法

[cpp]
//视图旋转之前自动调用  
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { 
    NSLog(@"视图旋转之前自动调用"); 

//视图旋转方向发生改变时会自动调用  
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration 

    NSLog(@"视图旋转方向发生改变时会自动调用"); 

//视图旋转完成之后会自动调用  
 
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { 
    NSLog(@"视图旋转完成之后自动调用"); 

//视图旋转之前自动调用
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
    NSLog(@"视图旋转之前自动调用");
}
//视图旋转方向发生改变时会自动调用
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    NSLog(@"视图旋转方向发生改变时会自动调用");
}
//视图旋转完成之后会自动调用

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    NSLog(@"视图旋转完成之后自动调用");
}


 

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

    推荐热点

    • Lexical or Preprocessor Issue 'xxx.h
    • ios学习笔记(二)xcode 4.3.2下实现基本交互
    • ios版本的helloworld
    • iphone(object-c) 内存管理(3) 有效的内存管理 前半部分
    • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
    • IOS类似iphone通讯录TableView的完整demo【附源码】
    • UITableView一些方法
    • [iPhone中级]iPhone团购信息客户端的开发 (二)
    • 如何为Iphone应用创建启动界面
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1