The inner workings and use of Apple's GameCenter API in your apps.

learn more… | top users | synonyms

0
votes
1answer
10 views

Game Center Turn Based match list not showing when offline

I am using custom view to show the list of matches in my turn based game. With the custom view I am having issues showing the list of current games the player is involved when the device is offline. ...
0
votes
0answers
22 views

Server side only multiplayer turn based game engine [closed]

I'm developing a turn-based game for 2-4 players with very small amount of needed client and server side requests/respones. Basic requests for clients would be: a) ...
0
votes
1answer
34 views

Mac application bundle ID not changing

I am trying to change my Mac's app ID, but it's simply not being updated! I changed the plist, however, when I run the game center code, I get his: NSUnderlyingError=0x1013a1a50 "The operation ...
0
votes
0answers
18 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
24 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
35 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
37 views

Unity4 and Prime31 Game Center Plug-in Event

I'm still new when it comes to C# programming (I normally use Unityscript). I have the Game Center plugin up and running successfully, except for one thing... When an achievement is accomplished, the ...
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
24 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
1answer
35 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
14 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
0answers
20 views

Popup Game Center views in game

I'm try to popup game center views on devices which use the system version lower than 6.0, that is to say , GKGameCenterViewController is not available. However, if I use GKAchievementViewController, ...
0
votes
0answers
19 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
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
36 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
43 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
46 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
26 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
32 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 ...
0
votes
0answers
19 views

how to pop up game center registration multiple times?

Before loading my game,I keep my game center unauthenticated. The first time when I call [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler] the sandbox pops up , and then I choose cancel. ...
-2
votes
2answers
55 views

How can I store game data in iOS Game Center? [closed]

I read the documentation. Game Kit Framework Reference Is there no way that I can store data about game and player using Apple Game Center? I want to store user information such as his all scores ...
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
0answers
18 views

cannot load achievement from Game Center

I have enabled Game Center for my game , as well as creating an achievement for test. However,when calling [GKAchievement loadAchievementsWithCompletionHandler], the returned array is always nil. But ...
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
57 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
65 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 ...
1
vote
1answer
11 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
55 views

Corona: How to remove a timer from the exitScene function?

I need to remove the timer from the exitScene function as I remove all the listeners but I didn't found how. This is the code: function scene:enterScene(event) planeta.enterFrame = rotarPlaneta ...
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
25 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
70 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
54 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 ...
-2
votes
0answers
48 views

parallax scrolling in windows forms [closed]

Can you give me a link or a simple code so I can make my very own Parallax scrolling effect in windows forms ... I know windows forms is not the best for parallax scrolling but i need it for a school ...
3
votes
1answer
63 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. ...
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
41 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
71 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
253 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
27 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
77 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
33 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 2 3 4 5 18