5

我最近发布了一个 iOS6 应用程序,我需要为 iOS 7 更新它。新的状态栏有点问题。self.view 的框架/边界似乎发生了变化(+20 分),我使用 self.view.bounds 来确定某些元素的位置。我一直在寻找一些解决方案。基本上我需要更新应用程序,同时仍然支持 iOS 6 状态栏。对此有最佳做法吗?

下面的代码似乎可以检测 iOS 7 设备并将内容移动到位,但也会导致其他问题。无论如何,我不相信这是最好的方法。

if([[[[UIDevice currentDevice] systemVersion] componentsSeparatedByString:@"."][0] intValue] >= 7) {
    CGRect statusBarViewRect = [[UIApplication sharedApplication] statusBarFrame];
    float heightPadding = statusBarViewRect.size.height+self.navigationController.navigationBar.frame.size.height;

    [myContentView setFrame:CGRectMake(0, heightPadding, self.view.frame.size.width, self.view.frame.size.height - heightPadding)];
}

在此处输入图像描述

4

2 回答 2

11

您可以通过在 iOS7 SDK 中实现名为 edgesForExtendedLayout 的新属性来实现这一点。请添加以下代码来实现这一点,

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
        self.edgesForExtendedLayout = UIRectEdgeNone;

您需要在 -(void)viewDidLoad 方法中添加上述代码。

于 2013-09-20T05:18:48.720 回答
0

我使用此解决方案在模态对话框中调整我的视图:

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
        CGRect sbFrame = [[UIApplication sharedApplication] statusBarFrame];
        __block CGRect vFrame = self.view.frame;
        __block CGFloat diff = sbFrame.size.height + sbFrame.origin.y - vFrame.origin.y;
        if (diff > 0.0)
        {
            [UIView animateWithDuration:UINavigationControllerHideShowBarDuration
                                  delay:0.0
                                options: UIViewAnimationOptionCurveEaseOut
                             animations:^{
                                 vFrame.origin.y += diff;
                                 vFrame.size.height -= diff;
                                 self.view.frame = vFrame;
                             }
                             completion:^(BOOL finished){
                                 NSLog(@"Done!");
                             }];
        }
    }
}
于 2013-10-27T15:09:17.983 回答