Delay in presenting a modal view controller

前端 未结 9 1853
星月不相逢
星月不相逢 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:18

    Solution in Swift 3

    In the SampleSelectorViewController(the presented view controller) use the below code

    DispatchQueue.global(qos: .background).async {
    
    // Write your code
    
    }
    

提交回复
热议问题