gamecenter hidden achievement is visible
i have 4 achievement in gamecenter, 2 hidden (i checked hidden in itunesconnect), but in simulator and in device they are visible... im i missing something?
and this code says always "visible"
in apple dev center i have seen:
When you report progress to Game Center, two things happen:
If the achievement was previously hidden, it is revealed to the player. The achievement is revealed even if your player has made no actual progress on the achievement (a percentage of 0.0).
so...at the end of the game i report achievement to gamecenter, then the player clicks on achievement button, and he could see the hidden achievement even if it is not reached...???
how can i mantain hidden this achievement?
and this code says always "visible"
Code:
if(achievement!= NULL)
{
[achievement reportAchievementWithCompletionHandler: ^(NSError *error){
if(error != nil){
NSLog(@"Achievement failed %@",achievementIdentifier);
} else {
NSLog(@"Achievement Success %@",achievementIdentifier);
NSLog(@"%@",achievement.hidden?@"hide":@"visible");
}
}];
}When you report progress to Game Center, two things happen:
If the achievement was previously hidden, it is revealed to the player. The achievement is revealed even if your player has made no actual progress on the achievement (a percentage of 0.0).
so...at the end of the game i report achievement to gamecenter, then the player clicks on achievement button, and he could see the hidden achievement even if it is not reached...???
how can i mantain hidden this achievement?
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| customize an action of iphone home button to submit score in gamecenter | sefiroths | 7 | 6,085 |
Nov 30, 2011 01:59 AM Last Post: sefiroths |
|
| skinning gamecenter UI | sefiroths | 6 | 9,082 |
Aug 17, 2011 10:09 AM Last Post: sefiroths |
|

