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 specific game?

link|improve this question
What is it you want to do beyond using the normal GameKit interactions outlined here? developer.apple.com/library/ios/#documentation/… – brindy Jul 23 '11 at 0:24
While it's possible to show leaderboards and achievements inside the app, I would have liked the ability to open the actual Game Center app from a button and directly go to the "page" for my app. – pyrosphere Jul 28 '11 at 11:33
Another reason: if the user is not logged into Game Center and is trying to access a feature in your app that requires it, it might be helpful to direct them to the Game Center app to log in. – jonsibley Feb 28 at 1:40
feedback

1 Answer

up vote 7 down vote accepted

I've tried many different combinations. Judging by iBook's lack of such a feature, the lack of documentation and as I'm sure you've found—the lack of info on the internet—I'm going to say that someone'd probably have to either brute force the URL to figure it out (if it's set up to go to individual apps by URL at all). Here are some I've tried:

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:id350536422"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:us/app/cheese-moon/id350536422"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:games/"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:350536422"]];

UPDATE

I combed through the internals of the OS and found out the URL resolution patterns for Game Center:

URL resolution patterns for Game Center

You'll need to be savvy with regex to use all of them. Here are some I've typed out for you:

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:/me/account"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:/me/signout"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:/friends/recommendations"]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:/games/recommendations"]];
link|improve this answer
Insightful. The most probable URL to open Game Center for a specific game would be: ^/games/game/.+ however I threw everything I could think of like gamecenter:/games/game/cut-the-rope or with IDs and nothing worked. – pyrosphere Nov 7 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.