IOS 自动(手动)转屏

来源:互联网 发布:13家合法网络筹款平台 编辑:程序博客网 时间:2024/06/03 01:22

一、第一次做转屏的时候走了不少弯路,过一段时间不写,发现忘了差不多了,还好有度娘和google,让我很快找到感觉,下面来谈谈我对转屏的了解(有不对的地方或更好的方法请留言,不胜感激!!!)

iOS6前的转屏比较简单就一个方法

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {

    return (toInterfaceOrientation == UIInterfaceOrientationPortrait) || (toInterfaceOrientation ==UIInterfaceOrientationLandscapeLeft) || (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);

}

 

iOS6及以后

①告知Appdelegate要支持转屏的方向

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow*)window {

    returnself.orientation;

}

 

②在需转屏的viewController

- (void)viewWillAppear:(BOOL)animated {

    [super viewWillAppear:animated];

    AppDelegate *del = (AppDelegate *)[UIApplicationsharedApplication].delegate;

    del.orientation = UIInterfaceOrientationMaskAllButUpsideDown;

}

 

③在需转屏的viewController加

- (NSUInteger)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;

}

- (BOOL)shouldAutorotate {

    returnYES;

}

 

二、手动转屏(按一个按钮或者一个事件触发)

1、假转屏

①转状态栏

[[UIApplication sharedApplication]  setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:YES];

②旋转当前view

self.view.transform = CGAffineTransformRotate(self.view.transformM_PI/4);

 

2、用私有方法转屏(此类要在ARC),上Appstore慎用

- (void)setCustomOrientation:(NSString *)orientate {

    UIInterfaceOrientation orientation = orientate.intValue;

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

        [[UIDevice currentDeviceperformSelector:@selector(setOrientation:) withObject:(id)orientation];

    }

}


0 0
原创粉丝点击