IOS禁止页面旋转的方法

来源:互联网 发布:淘宝德国必邦是真药吗 编辑:程序博客网 时间:2024/06/09 16:45

禁止旋转的方法如下:

在对应的control文件中加入如下三个方法的实现:


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation

{

    return (toInterfaceOrientation ==UIInterfaceOrientationPortrait);

}


- (BOOL)shouldAutorotate

{

    returnNO;

}


- (NSUInteger)supportedInterfaceOrientations

{

    returnUIInterfaceOrientationMaskPortrait;

}


0 0