我正在开发一款基于回合制的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];
}
这到底是怎么回事??
答案 0 :(得分:2)