ios - 如何在 UINavigationController 中嵌入 UITabBarController?
<p><p>我想在 <code>UINavigationController</code> 中嵌入 <code>UITabBarController</code>。我找到了<a href="https://stackoverflow.com/questions/27422054/how-to-implement-tab-bar-controller-with-navigation-controller-in-right-way" rel="noreferrer noopener nofollow">a similar question here on StackOverflow</a> ,但我尝试的实现不允许我将 <code>UIBarButtonItem</code> 添加到 <code>navigationItem.rightBarButtonItems</code>。</p>
<p>下面是我的实现截图。正在运行的应用程序中不显示“按钮 1”和“按钮 2”。任何想法我做错了什么?</p>
<p> <a href="/image/F0INH.png" rel="noreferrer noopener nofollow"><img src="/image/F0INH.png" alt="UITabBarController inside UINavigationController screenshot"/></a> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我认为您的“按钮 1”和“按钮 2”不可见,因为根导航 Controller 的导航栏重叠。<br/>
因此,您可以执行以下操作:<br/>
步骤 1. 创建一个 <code>UITabBarController</code> 子类并在 IB 中将其分配给您的标签栏 Controller 。<br/>
Step 2. 在 <code>-viewWillAppear:</code> 方法中只隐藏根导航 Controller 的导航栏</p>
<pre><code>- (void)viewWillAppear:(BOOL)animated
{
;
}
</code></pre>
<p>第 3 步:返回 Root View 时带回导航栏</p>
<pre><code>- (void)viewWillDisappear:(BOOL)animated
{
;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在 UINavigationController 中嵌入 UITabBarController?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/36986985/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/36986985/
</a>
</p>
页:
[1]