Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show a Game Center Achievement Notification

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!

like image 751
wallacer Avatar asked Aug 28 '11 23:08

wallacer


1 Answers

in iOS 5.0+ you can use

[GKNotificationbanner showBannerWithTitle:@"Title" message:@"Message" completionHandler:nil];
like image 132
RelativeGames Avatar answered Nov 15 '22 09:11

RelativeGames