菜鸟教程小白 发表于 2022-12-13 08:30:43

ios - 两个 UINavigationItem?


                                            <p><p>谁能解释为什么有两个<code>navigationItems</code>?当我像下面这样登录时:</p>

<pre><code>NSLog(@&#34;%@&#34;, self.navigationItem);
NSLog(@&#34;%@&#34;, self.navigationController.navigationItem);
</code></pre>

<p>我得到了两个不同的 <code>UINavigationItem</code> 实例:</p>

<pre><code>&lt;UINavigationItem: 0x7f85b06f5a20&gt;
&lt;UINavigationItem: 0x7f85b06ab640&gt;
</code></pre>

<p>我只以编程方式创建了一次 <code>UINavigationController</code>。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>所有 <code>UIViewController</code> 都有一个属性 <code>navigationItem</code>。因此,由于<code>UINavigationController</code>是<code>UIViewController</code>的子类,它也有这个属性。</p>
<p><code>self.navigationItem</code> 将是当你的 Controller 被推送时出现的。 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/#//apple_ref/occ/instp/UIViewController/navigationItem" rel="noreferrer noopener nofollow">documentation</a>对于<code>navigationItem</code>,这个属性很清楚</p>
<blockquote>
<p>This is a unique instance of UINavigationItem created to represent the view controller when it is pushed onto a navigation controller.</p>
</blockquote>
<p><code>self.navigationController.navigationItem</code> <em>would</em> 如果 Apple 允许嵌套 <code>UINavigationController</code> 则显示的项目。但是,由于这是不允许的,所以最好忘记它。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 两个 UINavigationItem?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31055811/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31055811/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 两个 UINavigationItem?