菜鸟教程小白 发表于 2022-12-12 09:43:23

ios - 在 iOS7.1 中使用 show (push) segue 不会出现导航栏


                                            <p><p>我有三个设备,三个 iOS 版本。我在 <code>RootViewController</code> 中隐藏了导航栏。然后对于每个 <code>ViewController</code>,我将导航栏显示为 </p>

<pre><code>- (void)viewDidLoad {
    ;
    self.view.userInteractionEnabled = YES;
    // Do any additional setup after loading the view.
    ;
    CGRect frame = CGRectMake(0, 0, 0, 44);
    UILabel *label = [ initWithFrame:frame];
    label.backgroundColor = ;
    label.font = ;
    label.textAlignment = NSTextAlignmentCenter;
    label.textColor = ;
    label.text = @&#34;Update Height&#34;;
    self.navigationItem.titleView = label;
}
</code></pre>

<p>它适用于 iOS8.4 和 iOS9.1 的两台设备,但不适用于 iOS7.1。对于 iOS7.1 设备,如果我将 segue 更改为自定义类型,则会显示导航栏。但是如果我更改为 Show (Push) segue,导航栏就不会出现。
可能是什么问题呢?
我使用了 UIStoryBoard 的 segue。
谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>阅读 <a href="https://stackoverflow.com/questions/7107503/set-navigation-bar-hidden-depending-on-how-the-view-controller-appeared" rel="noreferrer noopener nofollow">link</a>然后试试这个</p>

<pre><code> //hide on current view controller
- (void)viewWillAppear:(BOOL)animated {
    ;
    ;
}

// show on next view controller
- (void)viewWillDisappear:(BOOL)animated {
    ;
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS7.1 中使用 show (push) segue 不会出现导航栏,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33582705/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33582705/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS7.1 中使用 show (push) segue 不会出现导航栏