Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
1k views

Remove glossy from my game icon in GameCenter app

How to do it? UIPrerenderedIcon removes glossiness only for springboard icons.
7
votes
1answer
1k views

iOS Development: Strange problem with authenticating Game Center user

I'm building an iPhone game that supports Game Center (GC). When the app launches, I try to authenticate the local player... if([GKLocalPlayer localPlayer].authenticated == NO) { ...
6
votes
1answer
205 views

How to delay displaying of Game Center's popup window?

I have integrated Game Center (GC) into my game. It works great, except for an annoying message, which can popup in the middle of intense action, requiring 100% of the gamer's attention: "Could ...
6
votes
1answer
609 views

“Game Center account services are currently unavailable” on Simulator

I dont know since when this happened, maybe after the upgrade to Mac OS Lion and Xcode 4.1. But I am not sure. I have quite a large project for iOS which is constrained by the Game Center / Game Kit. ...
5
votes
1answer
247 views

Game Center Leaderboard showing counts, put no scores

I have recently added game center to my application and everything worked great in testing. Now, when I release the app, I went and and played the game, had a high score and submitted it. I actually ...
5
votes
1answer
403 views

Game Center URL scheme

It's possible to open the Game Center app from your own app using: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:"]]; Is there a way to open it on the page for a ...
5
votes
2answers
2k views

GameCenter Invitation Handler

trying to implement a multiplayer. Using the sample from Game Center - Sending and receiving data. Everything seems okay, but in apple documentation there is also said about invitation handler. ...
5
votes
4answers
2k views

GameCenter login alert

In a game I am developing using GameCenter, I want to handle the following scenario: the user starts up the game. He is shown the system alert that prompts him to log on GameCenter. He ignores it ...
4
votes
1answer
184 views

Update a score already submitted to Game Center

Right now I am working on a Black Jack game for iOS and would like to have a leader board that shows which players currently have the most "money". So if they get a high score and then lose "money" it ...
4
votes
1answer
426 views

iOS: Game center crash on simulator

This is driving me crazy, I just can't find out the problem: I have a crash on game center on simulator, in the device it works perfect. It crashes when I call the following code: [[GKLocalPlayer ...
4
votes
1answer
107 views

Setting up gamecenter to allow connections over cellular network

How does one setup game-center to be able to connect to users where ever. With both users being on a cellular 3G/4G network or on wifi? I have setup a p2p app using game-center and only players on ...
4
votes
2answers
2k views

Locking a UISearchBar to the top of a UITableView like Game Center

Hey guys, I was looking around for a solution to this, but couldn't find anything anywhere. I hope you can help. There's this cool feature in the UITableViews in Game Center and the search bars they ...
4
votes
3answers
1k views

Game Center vs OpenFeint

I would like to add a global leaderboard for my games score. Would you recommend Game Center or OpenFeint for implementing this? What is needed to setup a global leaderboard? Is the server hosted by ...
4
votes
1answer
498 views

Can I check for Game Center authentication status outside my app?

I want to be able to know if the user running my app is connected to GameCenter (through GameCenter app or through other app), when i'm first running my app. I found out that if I check the boolean: ...
4
votes
4answers
4k views

Cocos 2d and Game Center (Leaderboard issue)

I cant really find my answer after browsing (not a lot of topics on cocos2d with game center) I currently have my sandbox game center set up and I am able to authenticate, but when I create the ...
4
votes
1answer
424 views

Is there any web api for Apple's Game Center?

I have a website. I was wondering if Apple exposed its Game Center data via a web api. If would be cool if I could show users their Game Center info right in my website! Let me know folks.
4
votes
2answers
582 views

How to save and retry reporting GKAchievement's after network failure?

Apple states that if you want to report a GKAchievement but you get a network error, the best way to handle this is to save the GKAchievement (possibly adding it to an array), then periodically ...
3
votes
2answers
101 views

GameCenter and security

How can I make sure the data that people send to GameCenter (like score, and peer data exchange) is not tampered with? That is, the network data comes from securely stored data (e.g. using ...
3
votes
1answer
115 views

iPhone Game Dev : Achievement Framework?

I have written a simple game and am looking to integrate GameCenter Achievements with it. I would like to try to do this in a clean and neat way which is easy to add extra achievements to. As I see ...
3
votes
1answer
130 views

Is it possible to have a Game Center “LowestScore” Leaderboard?

I've read that Game Center Leaderboard scores are only updated when the newly posted score is greater than the already existing score. This made me wonder if it is possible at all to have a Game ...
3
votes
1answer
473 views

Game Center: seperate leaderboard for iPhone/iPad in universal app

Is it possible to have a separate game center leaderboard for iPad and iPhone in a universal application? The game center app on iPhone should exclusively show the scores achieved on the iPhone. When ...
3
votes
1answer
221 views

Game Center Scores Stuck at a Particular Score

I've been developing an app that posts scores to GC leaderboards and pulls them back down. Still in the dev phase, it does this to the sandbox envirenment. Recently I've noticed that the score ...
3
votes
2answers
497 views

Using Game Center login to bootstrap login on remote server

I'm wanting to allow users to create an account on my server automatically using their Game Center account. When my iOS app opens up it requires a connection and authentication with an XMPP server in ...
3
votes
2answers
877 views

iOS Development: When receiving a Game Center invite, how do I obtain the GKMatch object?

I'm building an iPhone game that uses Game Center and I'm having a hard time understanding how to start a match game that was started by receiving an invitation to play from a friend. The docs say ...
3
votes
2answers
1k views

Game Center InviteFailed

I'm am attempting to send a Game Center invitation. Sending from the simulator to a device or from a device to the simulator results in an InviteFailed error. What might be the problem? Incorrect ...
3
votes
1answer
974 views

Game Center custom leaderboard - Do I really need to make 2 calls to get a player's alias?

I'm using game center to set up a custom leaderboard, when it comes to retrieving the data for my UITableView, I only get the playerID property for each entry, but not a much more useful alias ...
3
votes
3answers
142 views

What's a good approach to disabling functionality that's not supported?

I suppose this question is language-agnostic, tho I'm asking it in regards to building an iPhone app that uses the new Game Center API, but please feel free to answer in general software engineering ...
3
votes
4answers
6k views

How can I ensure my iPhone app uses the Game Center sandbox?

I'm developing an iPhone game with Game Center integration. The game is being built as Debug (not release/distribution). On the simulator, Game Center always uses the sandbox properly. On the iPhone ...
2
votes
1answer
56 views

Realtime action iPhone Multiplayergame for iPhone via Game Center possible?

I'm currently building an iPhone action/fun-game with cocos2d. It's a 2D tank game where you have to fight against each other. I started implementing Game Center to support playing online with ...
2
votes
1answer
35 views

Game Center in Enterprise iOS Apps?

Is it possible to have Game Center leaderboards or achievements in an in house distributed enterprise app? The enterprise program doesn't seem to give you access to iTunes Connect, but I can't see any ...
2
votes
1answer
50 views

Odd Game Center behavior?

I'm trying to enable Game Center Leaderboard to my iPad game and I have learned that you need to post more than one score to a leaderboard for the scores to show in the default leaderboard UI. I have ...
2
votes
1answer
82 views

How can I logoff from game center from my app

i'd like to know a way to logoff from game center from my app, i know to authenticate is [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:nil]; is there a similar way to logout? ...
2
votes
1answer
393 views

iOS Game Center: Scores not showing on leaderboard in sandbox

I'm developing a Game Center enabled game and I'm running into an issue in the sandbox environment. I can successfully report the score without error. However, when I show the leaderboard, there are ...
2
votes
1answer
215 views

Image is null [NSCFDictionary setObject:forKey:]: attempt to insert nil value (key:)

i have this game app a cocos2d which i downloaded it is an open source game... i am trying to insert an online leaderboard to it using gamecenter. however the image that i insert seems to be ...
2
votes
2answers
90 views

Game Center Host

I am currently creating a Game Center game, and am using the peer-to-peer functionality available. However, I would like to select one of the players (2 players) to act as a host, to ensure ...
2
votes
2answers
138 views

How To Check If A User's iOS Device Supports Bluetooth Peer-To-Peer Connections

What is the best way of programatically checking if the current device supports Bluetooth peer-to-peer GameKit connectivity? I am aware of how to check for Game Center support, but want to support ...
2
votes
0answers
245 views

Any way to programmatically reset leaderboards?

As I look into documentation of GKScore and GKLeaderboard, there is no way to reset scores reported by player to particular leaderboard in GameCenter. Am I right? This seems quite inconsistent, ...
2
votes
1answer
452 views

GameCenter - log player out

I've got an iPhone game that I've just added GameCenter support to, and everything seems to be working ok. But, as someone who doesn't use GameCenter, I've added an option so that users can turn it ...
2
votes
1answer
138 views

Game Center windows don't scroll smoothly on OpenGL game

I have an shipped OpenGL game that I'm adding Game Center support to for a 1.1 rev. The game does not use a UIViewController and is coded as follows in the AppDelegate: ...
2
votes
1answer
96 views

How to check when GameKit UI displays

I've got very simple game that I'm trying to connect to Game Center. After calling: GKLocalPlayer *localPlayer = [GKLocalPlayer localPlayer]; [localPlayer ...
2
votes
1answer
177 views

How long can a Game Centre Achievements title or description be before causing problems?

Are there any restrictions on the length of the title or descriptions of Game Center achievements? I don't just mean what you're allowed to enter. I also mean any truncations or size-reductions on ...
2
votes
1answer
233 views

Monotouch Achievements and leaderboard viewcontrollers

Im having an odd issue with dismissing my achievements and leaderboard viewcontrollers. The viewcontrollers display correctly and can be dismissed using the done button but only if you press it within ...
2
votes
2answers
642 views

How to implement Game Center in iOS app?

I am a bit confused now. I read through a lot articles that describe how to implement game center. All of them mention that I have to create an app at itunes connect first. So do I have to submit my ...
2
votes
2answers
923 views

Avoid Leaderboard Hacking on Game Center

Has anyone found a way to avoid leaderbaord hacking on Game Center or at least make it more complicated? You can see a video of HackCenter, a Cydia app that lets you submit any score you want here: ...
2
votes
1answer
660 views

Blocks and ViewController Thread Safety

I've been looking at the Game Center code example, GKTapper, and one section where the developer comments on his implementation does not make too much sense to me. The code is inserted below. What I ...
2
votes
1answer
380 views

How can I support game center for iOS 4 but still run on 3

How can I support game center for iOS 4 but still run app on iOS 3. So game center will available only on devices with iOS 4.
2
votes
2answers
538 views

Turn based multiplayer game with Game center

I would like to know if game center supports online turn based multiplayer game through 3G network or different wifi access. From what I have been reading so far, game center supports bluetooth and ...
2
votes
2answers
783 views

Check if you've already unlocked an achievement in Game Center/GameKit

I've been stumped on this for quite a long time. I understand how to unlock an achievement in Game Center and I even got a whole messaging system working. But I can't figure out how to check if an ...
2
votes
2answers
609 views

iOS Development: Why doesn't loadScoresWithCompletionHandler ever return?

I'm playing with the Game Kit API and I have a very simple block of code that never returns, not even with an error... GKLeaderboard *pointsRequest = [[GKLeaderboard alloc] initWithPlayerIDs:[match ...
2
votes
1answer
215 views

Function to handle when user choose to cancel Game Center login?

I am developing an iPad game. I have this situation. When the user/player's game center account is not signed in, it will prompt an alert box, to let player choose, either to: Login existing account ...

1 2 3 4 5 7