views:

122

answers:

3

Maybe I'm just missing it, but is there any documentation on Apple's not-yet-released Game Center? Am I missing it somewhere, or is the information only being given to select developers?

I'd like to build my frame work around using it when it's released, but with no documentation, it's hard to even think about what to do.

+1  A: 

It's only available to paid developers who have signed the SDK and have access to any theoretical beta versions of iOS that may or may not be posted at some unspecified time by Apple. cough

Jonathan Grynspan
I'm a full Apple developer, I can not find the docs anywhere. Oh well.
Roger Gilbrat
You should ask this question on Apple's forums, as it's ultimately covered by their NDA, Game Center being unreleased software. You'll probably get a more helpful answer there.
Jonathan Grynspan
A: 

If you've got the 4.1 SDK, check GameKit.framework.

KennyTM
+1  A: 

Actually, yes it is. Don't know about Xcode 3, but since you are a paid developer, you can get Xcode 4, and from there you can get Game Center API documentations. Here are the steps to do it:

1) Open the Xcode Help.

2) On the top you should see a navigation bar, which should say "Xcode 4.0 Developer Tools Library > No Selection". Click on the "Xcode 4.0 Developer Tools Library" section and move your mouse to where it says "iPhone OS 4.0 Library".

3) Now, move your mouse over "Networking & Internet" and click on it.

4) You now should have a list of available APIs.

After that just look around for the APIs you want, like Leaderboards, and achievements.

Just so you know, there is no single "Game Center API Documentation". They are all over the place. The main ones you are looking for are things like GKLeaderboards, and anything else you are interested in. Those documentations should link to other documentations you would need.

futurevilla216