Could not successfully update network info during initialization

后端 未结 6 1528
忘掉有多难
忘掉有多难 2021-02-12 13:03

I get the above mentioned issue all the time when I first launch the app in the day. When I first launch the app, I make server calls to get some data and then play animation v

6条回答
  •  攒了一身酷
    2021-02-12 14:06

    You might have overrided loadView() without calling super method.

    Change

    override func loadView() {
    
    }
    

    To

    override func loadView() {
      super.loadView()
    }
    

提交回复
热议问题