IOS7学习之路八(iOS 禁止屏幕旋转的方法)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{

    return (toInterfaceOrientation == UIInterfaceOrientationPortrait);

}

- (BOOL)shouldAutorotate

{

    return NO;

}

- (NSUInteger)supportedInterfaceOrientations

{

    return UIInterfaceOrientationMaskPortrait;//只支持这一个方向(正常的方向)

}

如果在UIViewController上,则在UIViewController对应的.m文件中加入三个函数即可。

如果在UITabBarController上,则在UITabBarController对应的.m文件中加入三个函数即可。

如果在UINavigationController上,则在UINavigationController对应的.m文件中加入三个函数即可。

上一篇:关于html+ashx开发中几个问题的解决方法


下一篇:CAD/DWG图Web网页可视化技术之栅格和矢量瓦片