ios屏幕旋转的设置⽅法和英⽂解释
⽤这个⽅法在appDelegate适配
-(UIInterfaceOrientationMask)application:(UIApplication*)applicationsupportedInterfaceOrientationsForWindow:(UIWindow*)window{
//
if(_isHP==YES){
[[NSNotificationCenterdefaultCenter]postNotificationName:@"HPL"object:nil];
returnUIInterfaceOrientationMaskAll;//四个⽅向
}el{
returnUIInterfaceOrientationMaskPortrait;//竖直⽅向
}
}
-(BOOL)shouldAutorotate{
returnYES;//⽀持转屏
}
备注⽅向英⽂解释
UIInterfaceOrientationMaskPortrait//home键在下UIInterfaceOrientationMaskLandscapeLeft//⽀持向左旋转
UIInterfaceOrientationMaskLandscapeRight//⽀持向右旋转UIInterfaceOrientationMaskPortraitUpsideDown//⽀持上下
UIInterfaceOrientationMaskLandscape//⽀持左右同时旋转UIInterfaceOrientationMaskAll//⽀持四个⽅向
UIInterfaceOrientationMaskAllButUpsideDown//⽀持上左右
本文发布于:2023-03-08 07:09:42,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/1678230583181307.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:屏幕翻转.doc
本文 PDF 下载地址:屏幕翻转.pdf
留言与评论(共有 0 条评论) |