0

我将 viewcontroller XIB 制作为 4" 视网膜屏幕,并在底部放置了一个自定义视图。
我在 iPhone4 3.5" 模拟器上运行该应用程序。
大多数 iPhone 版本都应该支持我的应用程序,所以我在视图控制器的 viewdidload 上设置了视图的框架。我本来打算第一次隐藏视图,结果视图的框架设置为{{-320, 401}, {320, 147}}.
但是在viewwillappear中,我发现视图的框架被重置为{{0, 313}, {320, 147}}

我想知道为什么这个框架会自动更改。

谢谢你的帮助。

4

1 回答 1

0
Try This Code

+(BOOL)isDeviceiPhone5
{
    BOOL iPhone5 = FALSE;

    CGRect screenBounds = [[UIScreen mainScreen] bounds];
    if (screenBounds.size.height == 568) {
        // code for 4-inch screen
        iPhone5 = TRUE;
    }
    else
    {
        iPhone5 = FALSE;
        // code for 3.5-inch screen
    }
    return iPhone5;

}


+(CGRect )getFrameFor_iPhone4_height:(CGRect)frame
{
    frame.size.height = frame.size.height - 87.0;
    return frame;
}
+(CGRect )getFrameFor_iPhone4_yPos:(CGRect)frame
{
    frame.origin.y = frame.origin.y - 87.0;
    return frame;
}
于 2014-05-14T06:42:23.963 回答