15

我想问一下自动布局和通话状态栏。这是一个演示我的问题的简单场景:

  1. 创建启用“使用情节提要”的项目
  2. 添加“视图控制器”并启用其“是初始视图控制器”
  3. 将控制器视图的背景颜色设置为红色
  4. 将“表格视图”添加到控制器的视图中

表视图应该有 4 个布局约束(前导、顶部、尾随、底部)到 Superview,常量设置为 0。

现在当我在模拟器中运行这个应用程序并按下⌘</kbd> + T I can see red background while the in-call status bar animates in. Is it possible to get rid of this glitch?

4

3 回答 3

8

(由于缺乏声誉,使用答案而不是评论,对不起。)

我也遇到了这个问题并正在尝试例如上面指出的解决方案:它对我不起作用。

所以我创建了一个带有示例代码的存储库,以暴露原始海报的问题。这些场景有一些示例应用程序:

  1. Custom View Controller 是窗口的根视图控制器,
  2. 自定义视图控制器是 UINavigationController 的子视图,它是窗口的根视图控制器,
  3. 自定义视图控制器是 UITabBarController 的子级,它是窗口的根视图控制器,并且
  4. 自定义视图控制器是 UINavigationController 的子级,它是作为窗口根视图控制器的 UITabBarController 的子级。

事实证明,来自 CEarwood 的解决方案确实有效……当自定义视图控制器是 UINavigationController 的子级时(案例 2 和 4)。但是,它在情况 1 和 3 中不起作用。

我希望这些信息有用。

于 2014-03-15T13:45:25.147 回答
7

对于纯粹的自动布局答案,您可以获得对底部约束的引用并在收到 UIApplicationWillChangeStatusBarFrameNotification 时调整其常量,并在收到 DidChange 通知时调整为 0。这是我使用的测试VC:

@interface CEViewController ()

@property (nonatomic, strong) IBOutlet NSLayoutConstraint *bottomConstraint;

@end

@implementation CEViewController

- (void)viewDidLoad {
    [super viewDidLoad];        

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameWillChange:) name:UIApplicationWillChangeStatusBarFrameNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarFrameDidChange:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
}

- (void)statusBarFrameWillChange:(NSNotification *)note {
    NSValue *newFrameValue = [note userInfo][UIApplicationStatusBarFrameUserInfoKey];

    self.bottomConstraint.constant = newFrameValue.CGRectValue.size.height;
    [self.view setNeedsLayout];
}

- (void)statusBarFrameDidChange:(NSNotification *)note {
    self.bottomConstraint.constant = 0;
    [self.view setNeedsLayout];
}

@end
于 2013-05-14T15:38:08.357 回答
2

这是屏幕调整大小的效果。

当通话中状态栏出现时,视图会调整到通话中状态栏处于活动状态时应具有的大小,然后随着状态栏更改大小而向下移动。

片刻之后,表格视图下的视图可见。您可以做的是在表格视图下添加一个视图,该视图向下延伸到屏幕之外以掩盖背景颜色。

另一种方法是使用您的AppDelegate, 实现:

-application:willChangeStatusBarFrame:

并调整表格视图的大小以覆盖暴露的位。然后当 -application:didChangeStatusBarFrame:被调用时,将其调整回原始大小。

于 2013-05-08T12:33:18.520 回答