Skip to Content
Beginning iOS Game Center and Game Kit: For iPhone, iPad, and iPod touch
book

Beginning iOS Game Center and Game Kit: For iPhone, iPad, and iPod touch

by Kyle Richter
November 2011
Beginner content levelBeginner
238 pages
6h 19m
English
Apress
Content preview from Beginning iOS Game Center and Game Kit: For iPhone, iPad, and iPod touch

Programmatic Matches

If you want to bypass the GKTurnBasedMatchmakerViewController and implement your own GUI, there is an option to do so. Using the following method will create a new match without having the user go through the matchmaker.

- (void)findMatch {     GKMatchRequest *match = [[GKMatchRequest alloc] init];     [match setMaxPlayers:2];     [match setMinPlayers:2];     [GKTurnBasedMatch findMatchForRequest:match withCompletionHandler:^(GKTurnBasedMatch *match, NSError *error) {         if (error == nil) {             //start new game with returned match         } else {             NSLog(@"An error occurred when finding a match: %@", [error localizedDescription]);         }     }]; }

In addition to creating a game, you need to be ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning ARKit for iPhone and iPad: Augmented Reality App Development for iOS

Beginning ARKit for iPhone and iPad: Augmented Reality App Development for iOS

Wallace Wang
iOS 4 in Action

iOS 4 in Action

Lin Harrington, Shannon Appelcline, Christopher R. Allen, Brandon Trebitowski
iOS 7 Development Recipes: A Problem-Solution Approach

iOS 7 Development Recipes: A Problem-Solution Approach

Joseph Hoffman, Hans-Eric Grönlund, Colin Francis, Shawn Grimes

Publisher Resources

ISBN: 9781430235279Purchase book