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 viewed on iPad it should only show the iPad scores.

link|improve this question

60% accept rate
Can't you just determine the device with code and then select the correct leaderboard programmatically? They would both show up in the Game Center app though... – Jongsma Apr 7 '11 at 20:14
@Jongsma yes, i thought about that. If it's not possible I'll create 2 leaderboards and show the one on iPhone and the other on iPad. – phix23 Apr 7 '11 at 20:23
yupz.. its not possible.. – xuanweng Apr 13 '11 at 1:56
feedback

1 Answer

Yes, you can. Create 2 separate leaderboards in iTunes Connect, then when you post your score, check if the device is an iPhone or iPad

if(UI_USER_INTERFACE_IDIOM == UIUserInterfaceIdiomPad) {
//iPad
} else {
//it's an iPhone 
}

and assign the appropriate identifier.

That code should compile (but I might've made a typo somewhere)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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