完成游戏中心成就后,iOS7上没有显示成就完整横幅。 GKAchievement.showsCompletionBanner已设置为YES。它在iOS6和iOS5中运行得非常好。任何人有任何想法使这项工作? THX。
这是我所参考的GKAchievement课程中的属性。
@property(assign, NS_NONATOMIC_IOSONLY) BOOL showsCompletionBanner __OSX_AVAILABLE_STARTING(__MAC_10_8,__IPHONE_5_0); // A banner will be momentarily displayed after reporting a completed achievement
答案 0 :(得分:18)
在iOS 7中似乎已被破坏。以下是我使用的修复程序。您只需要一些条件来填写标题和消息。希望这会有所帮助。
[GKNotificationBanner showBannerWithTitle:@"Achievement" message:@"Completed!" completionHandler:^{}];