ios - presentModalViewController 不显示工具栏?
<p><p>我有一个试图显示为 UIModalPresentationFormSheet 的 ViewController ,但是它没有显示它的 UIToolbar。如何在其上显示工具栏?</p>
<pre><code>ConnectionEditViewController * connectionEditViewController = [ initWithNibName:@"ConnectionEditViewController" bundle: nil];
connectionEditViewController.modalInPopover = YES;
connectionEditViewController.modalPresentationStyle = UIModalPresentationFormSheet;
connectionEditViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>创建一个 UINavigationController 实例,将 rootViewController 设置为您的 connectionEditViewController,然后为 UINavigationController 配置模态属性并呈现。</p>
<p>如果这是在 iPad 上,它应该会弹出带有导航栏的 View 作为顶部的灰色工具栏。
配置connectionEditViewController的navigationItem来配置导航栏。</p></p>
<p style="font-size: 20px;">关于ios - presentModalViewController 不显示工具栏?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/4291656/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/4291656/
</a>
</p>
页:
[1]