使用游戏中心时
endTurnWithNextParticipant:matchData:data completionHandler
在 IOS6 中已弃用我如何在 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;
}
}];
任何人都可以帮助我使用它。谢谢你。