Xcode7 Swift - iPad App NavigationItem标题未显示

时间:2015-09-12 21:23:49

标签: ios xcode swift ipad uitabbarcontroller

我正在使用最新的XCode 7 Beta并使用Swift编程语言创建一个简单的iPad应用程序。

这就是我设置故事板的方式:

  1. 我开始使用单一视图应用模板
  2. 然后我将视图嵌入到NavigationController
  3. 然后我创建了我的"登录"查看UI元素
  4. 然后我将TabBarViewController放到了故事板上
  5. 然后我联系了#34;登录"按钮到TabBarController
  6. 然后在标签栏的每个视图中,我添加了一个NavigationBarItem并设置了标题
  7. 当应用运行并点击登录按钮时,我被带到TabBarController,但我看不到标题。

    这就是我的故事板的样子:

    enter image description here

    应用程序运行方式(点击登录按钮后):

    enter image description here

    任何想法为什么?我是否正确使用控件?或者这是Xcode 7 Beta中的错误?

    这是我的测试项目压缩:http://s000.tinyupload.com/index.php?file_id=90125200274831974206

2 个答案:

答案 0 :(得分:1)

即使在较旧的Xcode版本中也存在此问题。我在接下来的步骤中解决了这个问题:

  1. SalesCustomers
  2. 创建自定义类
  3. enter image description here
  4. self.tabBarController!.title = "Sales or Customers"方法中为每个自定义类添加viewWillAppear()

答案 1 :(得分:0)

请在view didload中设置标题:

navigationItem.title = "title"