IOS屏幕旋转(备忘)

来源:互联网 发布:网络教育 考试难度 编辑:程序博客网 时间:2024/06/04 01:27
#pragma mark - 屏幕旋转- (BOOL)shouldAutorotate{    return YES;}- (BOOL)prefersStatusBarHidden{    return YES; //返回NO表示要显示,返回YES将hiden}- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{    return UIInterfaceOrientationLandscapeLeft;// 多种旋转可以用||}- (NSUInteger)supportedInterfaceOrientations{    return UIInterfaceOrientationMaskLandscapeLeft;}


                                             
0 0
原创粉丝点击