Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8487413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T21:13:50+00:00 2026-06-10T21:13:50+00:00

I have a 2-player, iOS turn-based game that uses the game center and GKTurnbasedMatch.

  • 0

I have a 2-player, iOS turn-based game that uses the game center and GKTurnbasedMatch.

Is there a way to programmatically rematch an opponent after a match has finished?

I would like to give the players one-button access to starting a new match with each other.

If there is not a one button approach, what are some potential alternatives?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T21:13:52+00:00Added an answer on June 10, 2026 at 9:13 pm

    Indeed it appears a full programmatic solution is being ignored by Game Center. A pain, no doubt. Try the following in your @selector(doRematchTap)… or some equivalent:

        NSMutableArray *playerIds = [NSMutableArray array];
        GKTurnBasedParticipant *otherPlayer = /* Get the other player some way */;
        GKTurnBasedParticipant *myParticipant = /* Get yourself a very similar way*/;
    
        [playerIds addObject:myParticipant.playerID];
        if (otherPlayer.playerID) {
            [playerIds addObject:otherPlayer.playerID];
        }// sanity check
    
        GKMatchRequest *request = [[GKMatchRequest alloc] init];
        request.playersToInvite = playerIds;
        request.minPlayers = 2;
        request.maxPlayers = 2;
    
        GKTurnBasedMatchmakerViewController *tbmcv = [[GKTurnBasedMatchmakerViewController alloc] initWithMatchRequest:request];
        tbmcv.showExistingMatches = NO;
        tbmcv.turnBasedMatchmakerDelegate = /* Your normal delegate for the callbacks */;
    
        [self presentViewController:tbmcv
                           animated:YES
                         completion:^{
                          }];
    

    Important to note the showExistingMatches = NO, which will jump the view controller right into matchmaking mode with the correct user pre-selected (it seems), and not show the user’s existing matches.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a turn based iOS game using the new turn-based iOS5 API.
I'm having an issue where I have a player object that I'm trying to
I have a baseball player super class I have a left field, center field,
I have a music player that links to a song using the following syntax:
I have a flash player that loads in some additional features from flash files
A few weeks ago I created a TurnBased 2-player game running on iOS 5.
I have an iOS app that contains a lot of local web content. Some
I am building a MP3 player for iOS that plays audio files hosted on
I have an audio player that I'm building using AVPlayer. Currently, I keep the
I have a usual iOS Cocos2d game. I start with a MainMenuViewController, which then

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.