iOS设备方向

时间:2011-07-08 12:56:10

标签: ios rotation orientation pixels cgrect

我以编程方式将一堆按钮,标签,自制导航栏和图像放入视图中,并使用CGRectMake(x,x,x,x)将所有内容放在视图中。现在,当我插入:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return ((interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) || (interfaceOrientation == UIInterfaceOrientationPortrait));
}

当我颠倒旋转时,一切都没有了。然后当我旋转回正常(肖像)时,导航栏和背景变得混乱。有任何想法吗?图片如下。谢谢!

正常:http://chillysky.com/airtime1.png

颠倒:http://chillysky.com/airtime2.png

颠倒后恢复正常:http://chillysky.com/airtime3.png

0 个答案:

没有答案