视图方向

来源:互联网 发布:新思路二级vb序列号 编辑:程序博客网 时间:2024/05/16 11:12

UIInterfaceOrientationPortrait 竖直方向 home键在下

UIInterfaceOrientationPortraitUpsideDown 竖直方向 home键在上

UIInterfaceOrientationLandscapeLeft 横向 左

UIInterfaceOrientationLandscapeRight 横向 右




解决ios5跟ios6横竖向的问题

在主视图类里加上:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

    return (interfaceOrientation !=UIInterfaceOrientationPortraitUpsideDown)&&(interfaceOrientation !=UIInterfaceOrientationPortrait);

    

}