Tagged Questions
0
votes
1answer
25 views
How does game center manage a match when users close then reopen the game?
For example if they have a text message or call they respond to, then they reactivate the game, how long does game center give them before telling them they are disconnected? Is it possible to change ...
0
votes
0answers
41 views
Game center, how to handle invites
I am working on a multiplayer game. For listing, ending and creating matches I do NOT use GKTurnBasedMatchmakerViewController. So I have custom view controller to show all the matches.
My problem is, ...
1
vote
0answers
47 views
Implement my own a custom GKTurnBasedMatchmakerViewController
I'm sure there are questions similar to this, but I couldn't find an example. I'm trying to recreate the apple GKTurnBasedMatchmakerViewController for my turn based game with my own custom interface ...
1
vote
1answer
41 views
Matching ranked or similar opponent
Is it possible in iOS Game Center to match an opponent with similar skills or ranking? I want to match an opponent with some ranged value such as experience or total score. I'm new with iOS ...
4
votes
1answer
295 views
iOS Game Center GameKit Programmatic Invite Matchmaking
I'm trying to implement a real-time multiplayer game with a custom UI (no GKMatchMakerViewController). I'm using startBrowsingForNearbyPlayersWithReachableHandler: ^(NSString *playerID, BOOL ...
0
votes
1answer
188 views
GameKit Match - invite friends between iOS5 and iOS6
I'm trying to implement Game Center invites in a 2-person realtime game. Since invites are not supported in the simulator, I'm testing this on one device running iOS5 and a second one running iOS6 ...
1
vote
2answers
116 views
Where is the auto-matched playerID stored before the connection is made?
I have implemented a custom matchmaker as a direct drop-in replacement to GKMatchmakerViewController, shown only when running in iOS6+. It is working perfectly, but there is one part of the UI in ...
0
votes
0answers
56 views
Matchmaking invite friend fails instantly when using GKMatchMakerViewController initWithRequest
this is my first question on Stack Overflow, so thanks in advance. I am adding simple 1v1 mutliplayer functionality to my iPhone game, and I am struggling with the Matchmaker functionality. ...
0
votes
2answers
284 views
iOS Gamecenter Programmatic Matchmaking
I'm trying to implement a real-time multiplayer game with a custom UI (no GKMatchMakerViewController). I'm using startBrowsingForNearbyPlayersWithReachableHandler:
^(NSString *playerID, BOOL ...
0
votes
0answers
213 views
Game Center Invites Failing From iPad to iTouch
I have a game center app that has been compiled as Universal which I am testing on 3 devices;
a. iTouch (ios 5.1)
b. iPhone 4s (ios 6.0)
c. iPad 2 (ios 6.0)
Invites are accepted in all directions ...
0
votes
1answer
47 views
GKMatchmakerViewController does not handle touches
I am showing this modalView and it does not handle touches. I am using cocos2d-iphone.
mControllerView= [[UIViewController alloc] init];
//mControllerView.view = [[CCDirector sharedDirector] ...
1
vote
1answer
194 views
Gamecenter Matchmaking Doesn't Work
Here is my Menu.m's onEnter method:
GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
GKMatchmakerViewController *mmvc = ...
0
votes
0answers
220 views
Does GameKit hosted matchmaking actually work?
I'm really hoping I'm wrong about this, but from what I can tell, GameKit hosted matchmaking simply does not work if a player invites some friends into a match but leaves some slots open for ...
0
votes
0answers
89 views
Problems cancelling a programatically created match in game center
I'm trying to give the option of cancelling a programatically created game by clicking the alert cancel button, but something isn't quite right. Any help would be appreciated
- ...
0
votes
0answers
202 views
Game Center invite not working on ios 4.1 devices
I am currently working on Game Center Multiplayer . when i try to invite a friend for a match the alert view asking to play the match shows when i accept it brings me to the matchmaking view ...
4
votes
1answer
1k views
Game Center inviting friends progammatically
I'm facing difficulty inviting a friend to the match.
GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
...