错误:您不是当前参与者。当我是当前的参与者。什么?

时间:2013-06-03 07:14:27

标签: iphone ios objective-c game-center gkturnbasedmatch

我正在开发一款基于回合制的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];
    }

这到底是怎么回事??

1 个答案:

答案 0 :(得分:2)

我是个白痴。在我的“endTurnWithMatch”函数中,我的“ERROR”以某种方式逃脱了我的else块并且每次运行该函数时都在执行。