我有一个使用适用于 iOS (v.1.1) 的 Google Game Play 服务的应用程序。我有一个显示成就的按钮。它在 iOS 6 中运行良好,但在 iOS 7 上我遇到了这个崩溃:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewWrapperView style]: unrecognized selector sent to instance 0x1b975750'
这是我的代码:
BOOL signedIn = [[GPGManager sharedInstance] hasAuthorizer];
if (signedIn) {
GPGAchievementController *achController = [[GPGAchievementController alloc] init];
achController.achievementDelegate = self;
[self presentViewController:achController animated:YES completion:nil];
}
有人在试验这个问题吗?任何可能的解决方法?我在 Google Game Play Services 官方文档中没有看到任何信息。