iOS中将个别页面强制横屏其他页面竖屏

时间:2024-01-26 02:10:46
【文件属性】:

文件名称:iOS中将个别页面强制横屏其他页面竖屏

文件大小:33KB

文件格式:PDF

更新时间:2024-01-26 02:10:46

ios 中将

在AppDelegate.h里面添加@property(nonatomic,assign)NSInteger allowRotation; 在AppDelegate.m文件里面添加 - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { if (_allowRotation == 1) { return UIInterfaceOrientationMaskLandscapeRight; }


网友评论