美文网首页
屏幕的横竖屏支持

屏幕的横竖屏支持

作者: 水晶兰 | 来源:发表于2016-04-26 16:40 被阅读0次

有时候需要根据需要,有的页面要横屏,有的要竖屏。可以通过代码来实现。

-(BOOL)shouldAutorotate{

return YES;【允许自动选择】

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

return UIInterfaceOrientationMaskLandscape;【返回横屏】

}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {

return (UIInterfaceOrientationLandscapeLeft == toInterfaceOrientation ||

UIInterfaceOrientationLandscapeRight == toInterfaceOrientation);【支持的自动旋转的方向---》只能横屏旋转】

}

相关文章

网友评论

      本文标题:屏幕的横竖屏支持

      本文链接:https://www.haomeiwen.com/subject/zfoqrttx.html