Xcode 7 debug output: “ERROR:177: timed out…mMajorChangePending=0”

前端 未结 3 542
有刺的猬
有刺的猬 2021-02-05 05:43

I am seeing the following error in Xcode 7 build 6 debug console when running my app in the iOS 9 simulator:

2015-08-27 11:31:25.464 Reps[87841:2572333] 11:31:25         


        
3条回答
  •  不要未来只要你来
    2021-02-05 06:22

    Could you post more code for this?

    I had the same error and it turned out I was being stupid. I already declared var player = AVAudioPlayer() outside of viewDidLoad.

    I was then trying let player = try AVAudioPlayer....

    I got rid of the let as I had already declared the variable.. God knows what I was thinking putting let there! All seems to work fine now :)

提交回复
热议问题