iOS 13: threading violation: expected the main thread

前端 未结 1 435
自闭症患者
自闭症患者 2020-12-17 20:44

The app is being crashed when trying to hide the navigation bar for a viewcontroller only for iOS 13 users.

  • I got the crash on Crashlytics of F
相关标签:
1条回答
  • 2020-12-17 21:17

    do following action

      DispatchQueue.main.async {
        self.navigationController?.isNavigationBarHidden = false
      }
    
    0 讨论(0)
提交回复
热议问题