使用游戏中心时
IOS6中不推荐使用 endTurnWithNextParticipant:matchData:data completionHandler
我如何在IOS 6中使用它
[currentMatch endTurnWithNextParticipant:nextParticipant matchData:data completionHandler:^(NSError *error) {
if (error) {
NSLog(@"%@", error);
label.text = @"Oops, there was a problem. Try that again.";
} else {
label.text = @"Your turn is over.";
txtInput.enabled = NO;
}
}];
任何人都可以帮我使用它。 谢谢。