Reputation: 13213
Is there a built in way to show a user a notification that they've earned a Game Center achievement? Similar to the notification that appears when they are authenticated?
I was surprised when I completed my achievement and did not see a notification in my game.
Thanks!
Upvotes: 5
Views: 6336
Reputation: 1593
in iOS 5.0+ you can use
[GKNotificationbanner showBannerWithTitle:@"Title" message:@"Message" completionHandler:nil];
Upvotes: 12