Tagged Questions
0
votes
0answers
16 views
Game Center Custom matchmaking how to send invitations
I’m making a custom matchmaking for my multiplayer game with Game Center. I want to be able to invite friends, but i can’t seem to find how to. Is there any GK invitation view or sush? I have ...
0
votes
1answer
37 views
Crashed while using NSKeyedArchiver
I have a NSMutableArray and NSString I want to Archive these and also want to retrieve array and string with out change data inside the array and string.
I given like this,
for Archive,
...
0
votes
0answers
20 views
Can you programmatically accept an invite?
It seems GC is standing in between the invite and the client.
I want to display my own custom dialog to accept matches rather than use the default GC one. The one above always pops up when you ...
0
votes
0answers
18 views
getting Error when call game center
I getting an error while call game center.
Error Domain=GKErrorDomain Code=17 "The requested operations could not be completed because one or more parameters are invalid." UserInfo=0x92b9310 ...
0
votes
1answer
17 views
getting Error while send data to game centre
I getting crash while send NSData to Game Center in Xcode.
here is the scree shot.
hope a good solution for my issue thank you.
2
votes
1answer
61 views
Can't quit (ending match) in Game Center
I'm working on a turn based iOS game using game center and right now I have my test account participating in six games in Game Center, but every time I try to quit one by swiping on it (which should ...
1
vote
1answer
12 views
Get a list of all GKInvite to list them in a TableView
I am developing a turn based game using the Game Center. I handle the invitations to play using the following code::
GKMatchmaker sharedMatchmaker].inviteHandler = ^(GKInvite* acceptedInvite, NSArray ...
0
votes
1answer
71 views
Getting the turn based games in which a player is participating
I am trying to pull the turn based games in which a player is participating in order to populate my tableView.
This is my function to pull their games:
- (void) ...
3
votes
1answer
64 views
GKMatchRequest invitation not showing in other device
Thanks to the updates to GameKit API in iOS 6, I am finally able to implement my turn-based board game the way it should be, complete with turn timeouts and better programmatic creation of matches. ...
0
votes
1answer
29 views
How to tell if match data is empty?
I'm writing a turn based iOS game and right now I am having issues detecting when match data is empty. This is my function to load match data:
- (NSMutableArray*) loadMatchData
{
...
0
votes
1answer
37 views
Is it possible to store data that can be accessed while your app is closed?
I have a rather odd question. I am writing a turn based iOS game and was wondering if there is a way to store data in your application that can be accessed even when the app is closed. I have a ...
5
votes
0answers
70 views
Game Center invitation programatically with GKInvite list
I am using Game Center in my game for iPhone in IOS 6. I have a tableview with a list of GameCenter´s friends . When I click a friend name, this friend recieve anotificatión (Game Center Notification) ...
2
votes
1answer
77 views
Failing to authenticate local player iOS6
I'm building a Game Center game in iOS6 and am continuously running into problems with it. The current one has me stumped - Every single time my game tries to authenticate the local player it fails. ...
0
votes
1answer
77 views
setAuthenticateHandler failing to authenticate with Game Center
I'm new to iOS and trying to write a fun, turn-based iOS game. I'm trying to authenticate the local user right now and, while this code builds (albeit with a retain cycle warning), it always fails to ...
1
vote
0answers
40 views
GameCenter participantQuitInTurnWithOutcome does not work
I am bit in the unknown here and do not really know if this is anything wrong or not. I am trying to quit a turn-based game with the following code:
[match ...
0
votes
2answers
90 views
Building a map based iOS game
I'm going to build a map-based game regarding a virtual subway system. However, I don't know what will best solution to get started on it.
Here is few details:
So the map contains different stations ...
1
vote
1answer
58 views
GameCenter authentication compatibility issue in iOS 4, 5, and 6
currently I'm in the stage where I'll be integrating GameCenter into my games.
I saw these 2 authentication methods in the documentation
authenticateHandler
authenticateWithCompletionHandler: ...
0
votes
0answers
75 views
GameCenter AuthenticateHandler issue - Monotouch
I am having a problem with integration GameCenter in ios 6 app using Monotouch (but I think that the same issue exits in XCode). Problem occurs when I try to log in GameCenter from my app. First time ...
2
votes
0answers
88 views
GKTurnBasedMatch handleMatchEnded: not called
I'm programming a simple 2 players board game with GameKit and the GKTurnBased API, my problem is at the end of my game, when I want to detect that a player won and another lost.
First at all, the ...
0
votes
1answer
159 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 ...
0
votes
0answers
50 views
ios6: GameCenter shows wrong category (leaderboard)
I have leaderboards with IDs "1", "2" and "3". "1" and "2" was submitted for current version of app which is on the appstore, "3" is a new one. Test device has values submitted for all categories. To ...
1
vote
2answers
46 views
Inviting players to Game Center via email
I am developing a Turn-Based Game Center game and wonder if it is possible to invite players via email and not only players that all ready have the game and a user-id @ Game Center?
1
vote
1answer
83 views
chooseBestHostPlayerWithCompletionHandler returns null
The following code returns best host as null. How can I get it to work?
[gameKitHelper.match chooseBestHostPlayerWithCompletionHandler: ^(NSString *playerID) {
gameKitHelper.hostingPlayer = ...
0
votes
0answers
44 views
GameCenter: Device stops receiving data
I've written a very basic application using game center. Two devices connect over the cellular network (using matchmaking), and start transmitting empty byte arrays (as NSData) to each other every ...
0
votes
0answers
124 views
Game Center iOS 6 auto logging out when opening game
I'm having a problem with iOS 6 and the sandbox Game center. These are the steps that are causing the problem:
Log out of Game center
Open game and click the button to log in to game center
...
1
vote
0answers
140 views
Game Center issue in iOS 6
I am implementing Game Center in my app and I am having an issue trying to read the leaderboardCategory property in iOS 6.
Here's how I'm presenting the GKGameCenterViewController:
...
1
vote
0answers
49 views
Packet Loss when using GKMatchSendDataReliable
I have a multiplayer iOS game, and I am sending data using GKMatchSendDataReliable. However, occasionally, the data packet is lost. I've checked on the sending end and I am not getting an error. I'm ...
2
votes
1answer
131 views
Game Center turn-based match data is not saved and/or read
I am planning to develop a turn-based game and is trying to understand how to communicate with Game Center and send and receive mach data. I have read about it and tested this for days now and just ...
0
votes
0answers
31 views
Realtime Match Invitation In App
I'm working on a game that supports real time matches via Game Center. I can invite another player and the notification shows up. So far everything works.
However, I'd like to display an alert box ...
1
vote
0answers
296 views
IOS 6.1 Game center auto matchmaking getting stuck
In my game I am using auto-match making. Its working perfect for IOS 5.0, but with IOS 6.1 I am having trouble connecting. The match making processing is getting stuck at "Connecting..."
Here is the ...
1
vote
1answer
431 views
Springboard crash when app is restored from push notification from GameCenter
I'm developing a turn based game using GameCenter and constantly recieving a SpringBoard crash below. Using ARC. Iphone 4 on ios 6.0.1
Please help to understand the reason, i've been fighting with it ...
0
votes
1answer
150 views
GameCenter real time Match will not start, stuck on connecting, in the app store not in sandbox
I tested before submitting it of course, and it worked on simulators on iOS 6, but on 5.1 it wont work because the expectedPlayerCount always appears 1 not 0 !! just on 5.1!!
I searched about the ...
0
votes
1answer
117 views
Game Center crash in iOS6
My game has been working perfectly fine in iOS5 for a year. After updating it to work with iOS6 it now crashes when attempting to send scores in Game Center. It crashes on the ...
0
votes
1answer
331 views
Game Center login view controller only presenting when I use deprecated authenticateWithCompletionHandler: method
I realize this following method is deprecated in iOS 6, but it still works. It just issues a deprecated method warning. From my AppDelegate.m file:
[[GKLocalPlayer localPlayer] ...
2
votes
1answer
566 views
iPhone Simulator 6.0 not able to connect to gamecenter in sandbox mode
I'm trying to implement a gamecenter aware app targeted to iOS 6. To give some info on the environment I'm working on mac os 10.7.5 with XCode version is 4.5.2 and xcode is running iphone and ipad ...
1
vote
1answer
180 views
iOS GameCenter GKErrorCanceled
I'm in sandbox mode implementing game center in my application. The problem comes when I log to gameCenter, in some devices works fine in some others I get a GKErrorCanceled without even get the ...
0
votes
1answer
86 views
iOS 6 and GKAchievement reportAchievementWithCompletionHandler
I'm making update for iOS game and facing next problem. I use this piece of code
[achievement reportAchievementWithCompletionHandler:^(NSError *error)
{
if (error != nil)
{
NSUserDefaults ...
0
votes
1answer
813 views
game center unavailable player is not signed in
On iOS 6 when a player is not signed in and is trying to use GameCenter an UIAlertView with the text that i put in title pops up. "game center unavailable player is not signed in". My question is is ...
0
votes
1answer
242 views
Game center log in issue
I have a strange issue with Game Center and I hope someone can help me. My expected behaviour is this one. I'm on iOS 6 and in debug:
-When I start the application I log with GameCenter but if the ...
1
vote
0answers
78 views
Why Do Game Center Group (grp) Names Work Inconsistently?
I had an existing & published game that used the GC leaderboard my.example.
I then created a new application that used the same leaderboards and thus put them in the same group.
I use my ...
2
votes
1answer
270 views
iOS 6 Game Center Turn Based Match Starts With Minimum Number Of Players
One problem we have found is that if you have a variable number of players and then start a match with "auto-match", Game Center will start the match with the "minimum" number of players. It does ...
1
vote
0answers
175 views
gamecenter on 3Gnetwork don't work
I have a problem about the gamecenter,I am developing a multiply-player game, I have finished the connecting part, good luck, I can connect the another device to play the game over the local wifi, but ...
0
votes
0answers
218 views
handleInviteFromGameCenter handling for turn based game (iOS6)
The standard handleInviteFromGameCenter event handling (when inviting someone from GC-app for a turn based match) behaves strange under iOS6: when I provide the playerToInvite array to the ...
-1
votes
1answer
197 views
How to invoke handleInviteFromGameCenter in iOS 6
I'm trying to test some GameCenter code, and I can't figure out how to get handleInviteFromGameCenter to be triggered for a turn based game. However, I can't figure out how to get this event to ...
3
votes
0answers
317 views
iOS 6 New API For Turn Based Matches - Accept and Decline
iOS 6.0 has added a couple of new instance methods to the class GKTurnBasedMatch. I am not sure how to use them:
acceptInviteWithCompletionHandler
declineInviteWithCompletionHandler
Are they ...
0
votes
1answer
570 views
How to disable Challenge Friends Button in Games Center?
How can i disable Challenge Friends Button? Please help me!!!
Thanks...
3
votes
1answer
658 views
Handling Invitations for Programmatic Turn-Based Game
Thanks to the updates to GameKit API in iOS 6, I am finally able to implement my turn-based board game the way it should be, complete with turn timeouts and better programmatic creation of matches. ...
13
votes
1answer
2k views
iOS 6 Game Center authenticateHandler can't login after a cancel
When using the authenticateHandler in iOS 6, game center won't present the login view if the user cancels it. I realize game center will auto lockout an app after 3 cancel attempts, but I'm talking ...
2
votes
1answer
2k views
Apple game center and Facebook finding friends iOS6
I'm mainly looking to clarify the following:
1. I've been told that with iOS 5 and below, if you use Game Center to setup a multiplayer game, the functionality to 'find Facebook friends' (like in ...
3
votes
2answers
1k views
Authenticating the local player - Game Center - iOS6
I'm completely new to development in Game Center. I have watched the videos in WWDC and looked at the developer website. They suggest I enter code like this for iOS 6:
- (void) ...


