0
votes
0answers
15 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
17 views

iOS. Build errors when subclassing or adding a category on a class?

I have added the following code into my project: link These classes are for game center in iOS and they allow to compile a project if I simply use them. But when I try to subclass it or create a ...
0
votes
0answers
19 views

only local player is shown in game center

I am trying to develop game game-center compatible. All results pushed in game center are shown to current local player and aren't for my other app id's. I've tried on different game-center accounts ...
0
votes
1answer
25 views

iOS Updated App Version - New Leaderboards and Accomplishments

When I create a version update in iTunes Connect, the Game Center leaderboards and accomplishments are empty. Will the old leaderboards persist or do I have to create new leaderboards? If not, ...
0
votes
2answers
37 views

iOS game center leaderboard fake data

I am implementing game center leaderboard to my game and would like to use the leaderboard data to influence the gameplay. My question is how to add fake data with different playerID into my sandbox ...
0
votes
1answer
19 views

Game Center displayName error?

error: property 'displayName' not found on object of type 'GKPlayer *' is what I'm getting in Xcode. This makes no sense because it's documented and shows up in the code completion. This is the only ...
0
votes
1answer
25 views

iOS GameCenter Matchmaker not working

I’m trying to make a custom matchmakingview using a matchmaker. The code below is used to find a match. When i run this on two different devices with different Game Center accounts, both will get a ...
0
votes
0answers
15 views

ShowDefaultAchievementCompletionBanner not showing

In Unity-iPhone, I'm using GameCenterPlatform.ShowDefaultAchievementCompletionBanner(true) to activate gamecenter completion banner. There's no problem if the achievement was completed from 0% to ...
0
votes
2answers
27 views

How to determine if score for the match has been submitted

I am working on a turn based game which uses game center. I do not save any match data locally. While the game goes on, one of the players ends the game and submit score for him self. When the other ...
0
votes
2answers
62 views

How to find filled seats in iOS Gamecenter match.participants? [closed]

I'm writing a turn based iOS game using gamecenter and am having issues finding everyone currently seated in a partially filled game. How should I walk through my match's participants array and pull ...
0
votes
0answers
38 views

How does Game Center turn-based matchmaking work?

I'm working on a turn-based iPhone game. Games have ideally 4-8 players. In each round, one player is the judge and the rest are regular players. I am having issues with matchmaking wherein every game ...
1
vote
1answer
44 views

iOS: Retrieve Game Center friends who are online

I can retrieve all Game Center friends with this code... GKLocalPlayer *lp = [GKLocalPlayer localPlayer]; if (lp.authenticated) { [lp loadFriendsWithCompletionHandler:^(NSArray ...
-2
votes
2answers
48 views

Apple Game Center Web API [duplicate]

I am not trying to integrate Game Center into an application, instead I am trying to pull leaderboards and achievements into my web page. Is there an API or RSS feed for Game Center? Is there any ...
0
votes
0answers
30 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 ...
0
votes
1answer
33 views

Game Center can't find existing turn-based matches

I'm writing a turn-based iPhone game and I can't seem to find my own games. I have three accounts trying to matchmake in my game - one on my iPhone 5, and two different Game Center test accounts ...
0
votes
1answer
23 views

Sandbox GameCenter accounts failing to find each other in matchmaking

I'm developing a turn-based iPhone game using Game Center. I created two Game Center accounts for testing but neither can find the other when I try to matchmake games. Both are in two matchmade games ...
2
votes
1answer
60 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 ...
0
votes
1answer
23 views

Can Game Center be removed from my app in a future update?

If I submit an update to my iOS app implementing Game Center, can I then remove it in a future update? I thought that because users will have earned scores etc, Apple might not allow this?
0
votes
2answers
66 views

Passing object/NSData between iOS devices

I'm creating a game, turn based, and I was thinking of using Game Center to handle it, but the passed game-object is evidently max 64kb. Is there another way to pass objects between devices for this ...
0
votes
0answers
16 views

Game Center Score Updates Malfunctioning

My idea is to create an app which counts miles everyday you walked and puts it into Game Center. Yesterday, I tested my app with Game Center and it was showing me right value in the game center. I ...
0
votes
1answer
36 views

Communicating information from one iOS device to another

I am new to iOS development, I have a C#/.NET background so please excuse my ignorance. What are my options for communicating information from one iOS device (iphone/ipad) to another? To give some ...
0
votes
0answers
22 views

Game Center iOS Score Updates

I am working on an app which counts miles everyday you walked and put into game center. Yesterday, I tested my app with game center and it was showing me right value in the game center. I drived ...
1
vote
0answers
26 views

handleTurnEventForMatch:didBecomeActive: not called

I've faced some strange issue in multiplayer game. The method (void)handleTurnEventForMatch:(GKTurnBasedMatch *)match didBecomeActive:(BOOL)didBecomeActive should receive a turn from other player. ...
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) ...
0
votes
0answers
57 views

Game Center sandbox environment not showing all scores

I've enabled Game Center for the current version of an app I'm working on and I've set up a few Sandbox Game Center accounts for testing. Scores are submitting to my leaderboards correctly and if I go ...
1
vote
1answer
40 views

Only one player displayed in Game Center leader board (Sandbox)

In the sandbox environment of Game Center I tested with 2 different users. Unfortunately I only see one player in the leader board. Only the player who is logged in. I thought it should update after ...
1
vote
1answer
42 views

Dismiss Game Center view

I implemented Game Center into an iOS app. When the game center leader board view is opened from within the app and I press the 'Done' button, the view doesn't disappear. Below the code to open ...
1
vote
1answer
72 views

iOS game center — frequent CONNECTION INTERRUPTED messages

I am working on an iOS game center game, using GKTurnBasedMatch. Every time an incomplete turn, there is a message in the console like this: 2013-04-26 19:26:45.115 AppName[6439:5a9f] CONNECTION ...
2
votes
2answers
259 views

Cant receive game center invitations

I am trying to develop a realtime multiplayer game for IOS by using cocos2d by using the tutorial on ...
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 ...
2
votes
1answer
78 views

GKTurnBasedMatch push notifications are very inconsistent

I'm testing a turn based game between two devices. As far as I understand, sending a turn with [GKTurnBasedMatch endTurnWithNextParticipants:], for example, should automatically push a game center ...
-6
votes
0answers
34 views

How do you Integrate Game Center Leaderboards into your app [closed]

I want to integrate Game Center into my app and I want it so I can submit the Highscore from the app. How do I do this? Please can you explain this really simply, and don't bother linking me ...
0
votes
0answers
39 views

GameCenter leaderboards - why am I only getting my own scores back?

Trying to test out a leaderboard. I do this: GKLeaderboard *leaderboardRequest = [[GKLeaderboard alloc] init]; if (leaderboardRequest != nil) { leaderboardRequest.playerScope = ...
0
votes
1answer
41 views

How do you convert int into int64_t

I am creating a game and I want to intergrate Game Center into it. I have looked and it turns out that the integer that you want to submit has to be int64_t. And the int that I am using is a standard ...
0
votes
1answer
34 views

View Controller not deallocated after adding GameKit

My view controller no longer gets deallocated after adding the following: @property (strong, nonatomic) GKLocalPlayer *player; (in viewDidLoad) self.player = nil; [self authenticatePlayer]; - ...
1
vote
1answer
49 views

There and Back Again: Sending and receiving NSData through GameCenter [duplicate]

I'm working on a fun little turn-based iPhone game using GameCenter. This is my first time using the platform, and I could use a little help packing up the data to send, and then unpacking it. These ...
0
votes
1answer
23 views

IOS GameKit - Is there a way to force the creation of a totally new turn-based match through “findMatchForRequest”?

According to Apple's documentation (https://developer.apple.com/library/mac/#documentation/GameKit/Reference/GKTurnBasedMatch_Ref/Reference/Reference.html): "This method may either create a new match ...
2
votes
1answer
76 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
43 views

iOS Leaderboards Game Center

In my iOS app I created two leaderboards in Game Center. I have it all set up. I am just wondering if I can make it so when you tap a button it opens both leaderboards. I have the below code but don't ...
0
votes
1answer
57 views

Get all game center friends who play this game

I want a list of all friends of the local player who also play my game. I thought about doing a query for every friend score on every leaderboard, and finding distinct players: GKLeaderboard ...
1
vote
1answer
26 views

GameCenter match by locale

I have a game that relies very heavily on text-based communication, and therefore, I would like to only match players with other players who have the same language settings set, provided it is ...
1
vote
1answer
75 views

Game Center is not showing scores in Leaders-board iPhone

I have integrated Game Center in my project, i can log in to game center and can open leadersboard but its not showing any scores . i have tried to submit score in leaderboard and it returns success ...
0
votes
2answers
73 views

How can I tell if this iPhone supports Game Center challenges?

Game Center challenges were only made available in iOS 6, but Game Center itself was available much earlier (iOS 5?). If I want to show a Challenges button in my game, it needs to be hidden when ...
1
vote
1answer
48 views

GKTurnBasedMatch receive data

I am trying to implement a turn-based app, and there is no problem with sending turn data, but I see no way of receiving data automatically. So far, I have found out that much: There is a ...
0
votes
0answers
106 views

Game Center Error

I am following a tutorial here . Multiplayer Game iOS I am using following code from above tutorial for Match Making GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease]; ...
1
vote
0answers
37 views

game center matchmaking between non-friends using playersToInvite

Is this impossible? I tried some test code that succeeds in making a match when the two players that I specify by ID are friends, but fails with this error when they aren't. Using GKMatchmaker ...
0
votes
1answer
84 views

Good Practice to save game center data (GKTurnBasedMatch) in ios app

I am making an game app with game center, I would like to ask what is the good practice for saving game data like whole object (GKTurnBasedMatch) in app? since there is matchData for each of the ...
1
vote
0answers
25 views

Game center distance-based match-making?

Suppose that I want to match people only if they're within some distance apart by GPS coordinates. Is this possible through game center? Or, if my app has the GPS coordinates of the players and their ...
0
votes
1answer
62 views

Game Center authentication Handler will not dismiss Game Center login modal view controller

Got Game Center authentication working but when the Game Center 'Welcome' view controller appears in the view it will not dismiss. Hit cancel, the cancel action is sent but the view controller remains ...

1 2 3 4 5 11