使用Nib显示ViewController

时间:2016-12-29 04:30:13

标签: ios swift

我有一个xib文件:

enter image description here

enter image description here

我将其连接到TopRankViewController

但是当我推到TopRankViewController时,有一个空的ViewController,这里没有按钮。

我的代码:

if let tabBarController = self.tabBarController {
    let topRankViewController = TopRankViewController(nibName: "TopRankViewController", bundle: nil)
    topRankViewController.titleLocalize(title: type.title)
    tabBarController.navigationController?.pushViewController(topRankViewController, animated: true)
}

我想显示在我的xib文件中定义的那些按钮。

1 个答案:

答案 0 :(得分:0)

我在此视图中添加了一个视图,它适用于我。

enter image description here