ios - 在 UITabViewController 中隐藏 "Back"按钮
<p><p>我的 Storyboard顺序如下:</p>
<ul>
<li>UINavigationController</li>
<li>LaunchScreenVC</li>
<li>LoginVC 或 SignUPVC</li>
<li>UITabBarController</li>
<li>Tab1VC</li>
<li>Tab2VC</li>
</ul>
<p>我希望后退按钮出现在 LaunchScreenVC 和 LoginVC/SignUpVC 但不是 Tab1VC 和 Tab2VC。</p>
<p>我在 Tab1VC 和 TabVC2 的 <code>viewWillAppear</code> 中放置了 <code>;</code> 但没有任何效果。我读到应该在实例化 VC 之前调用此代码,但由于我使用的是 Storyboard,我怎么能做到这一点?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果你只想隐藏返回按钮,你可以做如下,添加到uitabBarController viewDidLoad方法中。</p> <pre><code>self.navigationItem.hidesBackButton = YES;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 UITabViewController 中隐藏"Back"按钮,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26580090/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26580090/
</a>
</p>
页:
[1]