iOS中将个别页面强制横屏其他页面竖屏
程序员文章站
2023-12-21 22:48:46
在appdelegate.h里面添加@property(nonatomic,assign)nsinteger allowrotation;
在appdeleg...
在appdelegate.h
里面添加@property(nonatomic,assign)nsinteger allowrotation
;
在appdelegate.m文件里面添加
- (nsuinteger)application:(uiapplication *)application supportedinterfaceorientationsforwindow:(uiwindow *)window { if (_allowrotation == 1) { return uiinterfaceorientationmasklandscaperight; } else { return (uiinterfaceorientationmaskportrait); } }
这样默认所以的页面就是竖屏的,在要强制横屏的页面的控制器uiviewcontroller
里面,引入#import “appdelegate.h”
然后
(void)viewdidload { [super viewdidload]; appdelegate * appdelegate = (appdelegate *)[uiapplication sharedapplication].delegate; appdelegate.allowrotation = 1; }
就可以让个别页面单独横屏了,在跳出这个横屏页面前修改状态,如下
appdelegate *delegate = [[uiapplication sharedapplication]delegate]; delegate.allowrotation = 0;
这样既可完整的实现页面的横屏。
以上所述是小编给大家介绍的ios中将个别页面强制横屏其他页面竖屏,希望对大家有所帮助