导航栏大标题,负载小

时间:2019-02-08 18:05:02

标签: swift uinavigationbar

我正在使用带有大标题的导航控制器,这在首次使用时可以按预期工作,就像在打开视图时扩展标题一样。

但是我的应用程序具有初始设置,我会检查它是否在AppDelegate中完成。

let alreadySaved = realm.object(ofType: OneRM.self, forPrimaryKey: "My-Primary-Key") != nil
    if alreadySaved == true {
        self.window = UIWindow(frame: UIScreen.main.bounds)
        let mainStoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
        let startViewController: TabBarViewController = mainStoryboard.instantiateViewController(withIdentifier: "StartExisting") as! TabBarViewController
        self.window?.rootViewController = startViewController
        self.window?.makeKeyAndVisible()
    }

但是,当它从此处加载视图时,标题会折叠,而在标准segue中,标题会加载扩展。

我尝试通过情节提要强制使用大标题,但这没什么区别。

任何想法都值得赞赏。

0 个答案:

没有答案