When a user's friend challenges his highscore, and the user beats it, it replies with a new challenge (By apple, not programmed). The other user gets the challenge, but the sender's game immediately crashes with Bad Access on this line if ([_delegate respondsToSelector:@selector(onScoresSubmitted:)]) from this tutorial http://www.raywenderlich.com/23189/whats-new-with-game-center-in-ios-6
Any ideas?
Are you sure that your _delegate is not random garbage value at this point?.
Make sure the client (delegate) who use the callBack clean the server delegate so that the callBack is not done anymore.
This can be done in two way:
Here a common error, because of a bad implementation:
I didn't read Ray code, if your problem is not similar to this, then i look deep further. But i'm 99% sure it's related to a deallocated pointer problem;