问题简介
尝试使用游戏中心实时与朋友一起玩游戏会导致游戏中的崩溃
项目详情
我的调查
- (void)matchmakerViewController:(GKMatchmakerViewController *) viewController didFindMatch:(GKMatch *)匹配
我处理邀请的流程
{
-(void)player:(GKPlayer *)player didAcceptInvite:(GKInvite *)invite {
self->inviteStarted((int)invite.playerGroup);
NSLog(@"didAcceptInvite");
//Called when another player accepts a match invite from the local player.
NSLog(@"didAcceptInvite was called: Player: %@ accepted our invitation", player);
GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithInvite:invite] autorelease];
mmvc.matchmakerDelegate = self;
[[AppController getViewController] presentViewController:mmvc animated:YES completion:nil];
}
}
{
-(void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)match
{
if (match != nil)
{
[[AppController getViewController] dismissViewControllerAnimated:YES completion:nil];
NSLog(@"%@", match);
self->myMatch = match;
//NSLog(@"Match found count!! %lu", (unsigned long)[self->myMatch retainCount]);
match.delegate = self;
if (!self->matchStarted && myMatch.expectedPlayerCount == 0)
{
self->matchStarted = YES;
opponent=[[myMatch players] objectAtIndex:0];
self->matchBegan();
[self loadOppPhoto];
}
}
}
}
{ - (void)sendDataToOppUnreliable:(NSString *)str
{
NSError *error=nil;
NSData *packet = [str dataUsingEncoding:NSUTF8StringEncoding];
//NSLog(@"this: %@", self);
//NSLog(@"Match found count!! %lu", (unsigned long)[self->myMatch retainCount]);
//NSLog(@"match: %@", self->myMatch);//EXC_BAD_ACCESS
[myMatch sendDataToAllPlayers: packet withDataMode:
GKMatchSendDataUnreliable错误:& error]; // EXC_BAD_ACCESS
if (error!=nil)
{
NSLog(@"Error in sending data: %li", (long)[error code]);
}
}
}
感谢您的帮助:)
答案 0 :(得分:0)