ターン ベースの iOS ゲームに取り組んでいるのですが、奇妙なエラーが発生します。私が実際に現在の参加者であることを実際に確認したのに、私は現在の参加者ではないと表示されます。ここで、私が現在の参加者であるかどうかを確認すると、「等しい」と出力されますが、ターンを終了しようとすると「エラー: あなたは現在の参加者ではありません」と表示されます。
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];
}
ここで一体何が起こっているのですか!?