欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2024-02-18 14:19:04
 在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中将个别页面强制横屏其他页面竖屏,希望对大家有所帮助