我正在开发一款基于回合的 iOS 游戏,但遇到了一个奇怪的错误。当我实际验证我确实是当前参与者时,它表示我不是当前参与者。在这里,我检查我是否是当前参与者,这会输出“Equal”,但是当我尝试结束我的回合时,它会显示“错误:您不是当前参与者”。
if ([match.currentParticipant.playerID
isEqualToString:GKLocalPlayer.localPlayer.playerID])
{
NSLog(@"Equal");
}
else
{
NSString* stringA, *stringB;
stringA = @"Current Participant %@", match.currentParticipant;
stringB = @"Me: %@", GKLocalPlayer.localPlayer.playerID;
NSLog(stringA);
NSLog(stringB);
}
// Pack up the game data.
NSData* gameData = [NSKeyedArchiver archivedDataWithRootObject:game];
[self endTurnWithMatch:game.match AndData:gameData];
}
这到底是怎么回事!?