ios - 使用自定义演示 Controller 时保留原始状态栏外观
<p><p>我使用自定义 <code>UIPresentationController</code> 从包含在导航 Controller 中的 Controller 呈现导航 Controller 。</p>
<p>我的问题是我无法保留原来的状态栏外观。我不想将状态栏的控制权交给新呈现的模式,而是我想把它留给源 Controller 。我该怎么做?</p>
<p>我玩过 <code>modalPresentationStyle</code> 但我无法用它实现任何目标,在我的情况下唯一合理的值是 <code>UIModalPresentationCustom</code>,否则没有任何效果或变得很奇怪。 </p>
<p>我没有在任何地方实现 <code>preferredStatusBarStyle</code>,因为在 iOS 9 上,导航 Controller 会从导航栏样式中选择正确的样式。</p>
<pre><code>self.stackTransitionDelegate = [ init];
controller.modalPresentationStyle = UIModalPresentationCustom;
controller.transitioningDelegate = self.stackTransitionDelegate;
;
</code></pre>
<p>转换本身是半模态的,这意味着源 Controller 的某些部分保留在屏幕上。这就是 <code>UIPresentationController</code> 子类实现 <code>shouldRemovePresentersView</code></p> 的原因
<pre><code>- (BOOL)shouldPresentInFullscreen {
return NO;
}
</code></pre>
<p>更新:</p>
<p>以下雷达:( <a href="https://openradar.appspot.com/22565293" rel="noreferrer noopener nofollow">https://openradar.appspot.com/22565293</a> ) 描述了该问题,并且在私有(private)方法的帮助下,我能够阻止呈现的 Controller 捕获状态栏的外观。</p>
<pre><code>- (BOOL)_shouldChangeStatusBarViewController {
if() {
return NO;
}
return YES;
}
</code></pre>
<p>我想知道是否有任何官方方法可以实现这一点。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我是这样解决这个问题的:</p>
<pre><code>- (UIStatusBarStyle)preferredStatusBarStyle {
UIViewController *viewController = self.presentingViewController;
while () {
viewController = ;
}
return ;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 使用自定义演示 Controller 时保留原始状态栏外观,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33804805/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33804805/
</a>
</p>
页:
[1]