endTurnWithNextParticipant:matchData:data completionHandler在IOS6中不推荐使用

endTurnWithNextParticipant:matchData:data completionHandler在IOS6中不推荐使用,ios6,game-center,xcode4.6,Ios6,Game Center,Xcode4.6,使用游戏中心时 endturnhithnextparticipant:matchData:data completionHandler在IOS6中不推荐使用 我如何在IOS 6中使用它 [currentMatch endTurnWithNextParticipant:nextParticipant matchData:data completionHandler:^(NSError *error) { if (error) { NSLog(@"%@", e

使用游戏中心时

endturnhithnextparticipant: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;
        }

    }];
任何人都可以帮我用这个。
谢谢。

在iOS 6中,使用
endTurnWithNextParticipants:turnTimeout:matchData:completionHandler
代替“turnTimeout:”是什么?