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?
|
It's possible to open the Game Center app from your own app using:
Is there a way to open it on the page for a specific game? | |||||||
feedback
|
|
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:
UPDATE I combed through the internals of the OS and found out the 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:
| ||||
feedback
|