Consistent Dispatch queue: com.apple.root.default-qos.overcommit crash

后端 未结 3 1001
独厮守ぢ
独厮守ぢ 2020-12-12 14:26

Anyone had experience diagnosing these crashes? I have a single user getting them consistently, and though I found an iOS related post, my app is not crashing on the same ty

3条回答
  •  不知归路
    2020-12-12 14:55

    Rewrite Shaybc's answer in Swift 3:

    DispatchQueue.global(qos: .background).async {
      // some task to perform
      print("This is my task")
    })
    

提交回复
热议问题