我有一个xib文件:
我将其连接到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文件中定义的按钮。
最佳答案
关于ios - 用Nib显示ViewController,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41373145/