美文网首页
设置页面横竖屏

设置页面横竖屏

作者: GShining | 来源:发表于2016-06-06 13:32 被阅读0次

// 是否支持旋转

- (BOOL)shouldAutorotate

{

return NO;

}

// 旋转方向

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

// Return YES for supported orientations

return (interfaceOrientation == UIInterfaceOrientationPortrait);//

如果返回的是(interfaceOrientation == UIInterfaceOrientationPortrait)表示只支持home键在最下面的那个方向

((interfaceOrientation == UIInterfaceOrientation) || (interfaceOrientation == UIInterfaceOrientationLandscapeLeft))表示支持home键在下面和在左边的两个方向,以此类推。。。

}

参考:http://blog.csdn.net/jpcfei/article/details/8995531

相关文章

网友评论

      本文标题:设置页面横竖屏

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