我使用自定义UIPresentationController
从导航控制器中的控制器提供导航控制器。
我的问题是我无法保留原始状态栏的外观。我不想将状态栏控制到新呈现的模态,而是我想把它留给源控制器。我怎么能这样做?
我和modalPresentationStyle
玩过但我无法用它做任何事情,我的唯一合理价值是UIModalPresentationCustom
,否则没有任何作用或变得非常奇怪。
我没有在任何地方实施preferredStatusBarStyle
,因为在iOS 9导航控制器从导航栏样式中选择了正确的。{/ p>
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;
}
我想知道是否有任何官方方法可以实现同样的目标。
答案 0 :(得分:1)
以下是我如何解决这个问题:
- (UIStatusBarStyle)preferredStatusBarStyle {
UIViewController *viewController = self.presentingViewController;
while ([viewController childViewControllerForStatusBarStyle]) {
viewController = [viewController childViewControllerForStatusBarStyle];
}
return [viewController preferredStatusBarStyle];
}