2

我使用自定义的导航控制器中包含的控制器提供导航控制器UIPresentationController

我的问题是我无法保留原始状态栏的外观。我不想将状态栏的控制权交给新呈现的模式,而是我想把它留给源控制器。我怎样才能做到这一点?

我玩过,modalPresentationStyle但我无法用它实现任何目标,在我的情况下唯一合理的价值是UIModalPresentationCustom,否则没有任何效果或变得很奇怪。

我没有preferredStatusBarStyle在任何地方实现,因为在 iOS 9 上,导航控制器从导航栏样式中选择了正确的。

self.stackTransitionDelegate = [[StackTransitionDelegate alloc] init];

controller.modalPresentationStyle = UIModalPresentationCustom;
controller.transitioningDelegate = self.stackTransitionDelegate;

[self.presentationContext presentViewController:controller animated:YES completion:nil];

转换本身是半模态的,这意味着源控制器的某些部分保留在屏幕上。这就是UIPresentationController子类实现的原因shouldRemovePresentersView

- (BOOL)shouldPresentInFullscreen {
    return NO;
}

更新:

以下雷达:(https://openradar.appspot.com/22565293)描述了问题,并且在私有方法的帮助下,我能够阻止呈现的控制器捕获状态栏外观。

- (BOOL)_shouldChangeStatusBarViewController {
    if([self.presentedViewController isBeingPresented]) {
        return NO;
    }
    return YES;
}

我想知道是否有任何官方方法可以实现相同的目标。

4

1 回答 1

1

这是我解决这个问题的方法:

- (UIStatusBarStyle)preferredStatusBarStyle {
  UIViewController *viewController = self.presentingViewController;
  while ([viewController childViewControllerForStatusBarStyle]) {
    viewController = [viewController childViewControllerForStatusBarStyle];
  }
  return [viewController preferredStatusBarStyle];
}
于 2016-06-02T23:15:47.030 回答