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.463 ERROR: 177: timed out after 0.012s (589 590); mMajorChangePending=0
Has anyone else seen this? Any idea what it means?
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
letas I had already declared the variable.. God knows what I was thinking putting let there! All seems to work fine now :)