Delay in presenting a modal view controller

前端 未结 9 1872
星月不相逢
星月不相逢 2020-12-24 10:51

I have a tab bar based app. There are navigation controllers in all 5 tabs with instances of custom view controller setup properly as root view controllers. This loads just

9条回答
  •  忘掉有多难
    2020-12-24 11:17

    Swift 4: you can use as below.

    DispatchQueue.main.async {
                let popUpVc = Utilities.viewController(name: "TwoBtnPopUpViewController", onStoryboard: "Login") as? TwoBtnPopUpViewController
                self.present(popUpVc!, animated: true, completion: nil)
            }
    

    It works for me.

提交回复
热议问题