菜鸟教程小白 发表于 2022-12-13 08:24:20

iphone - 向以编程方式创建的标签栏添加标题


                                            <p><p>我是 iPhone 开发的新手...现在我正在尝试构建一个应用程序,我在其中以编程方式创建 <code>UITabbarController</code>,如下所示:</p>

<pre><code>UITabBarController *tabbar = [ init];
firstViewController*firstView = [ initWithNibName:@&#34;firstViewController&#34; bundle:nil];

UINavigationController *tabItemOne = [[ initWithRootViewController: firstView] autorelease];
secondViewController *secondView = [ initWithNibName:@&#34;secondViewController&#34; bundle:nil];

UINavigationController *tabItemTwo = [[ initWithRootViewController: settings] autorelease];
tabbar.viewControllers = ;
tabbar.view.frame = CGRectMake(0,0,320,460);

;
;
</code></pre>

<p>在此,我如何为 <code>tabbar</code> 和那些 Controller 添加标题。
我试过了:</p>

<pre><code>firstView.title = @&#34;First View&#34;;
</code></pre>

<p>和</p>

<pre><code>tabItemOne.title = @&#34;First View&#34;;
</code></pre>

<p>但这两个不起作用..我该怎么做?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>设置<strong>aViewController.title</strong> 设置<em>navigationItem</em> 和<em>tabBarItem</em> 的<em>title</em>。如果您希望 <em>navigationItem</em> 和 <em>tabBarItem</em> 具有不同的 <em>title</em>,请执行此操作,</p>

<pre><code>// First set the view controller&#39;s title
aViewController.title = @&#34;First View Tab&#34;;

// Then set navigationItem&#39;s title
aViewController.navigationItem.title = @&#34;First View&#34;;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 向以编程方式创建的标签栏添加标题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/6702755/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/6702755/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 向以编程方式创建的标签栏添加标题