1

我有一个使用适用于 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 官方文档中没有看到任何信息。

4

1 回答 1

1

If the crash happens at the "presentViewController" line and the crash is deep in the bowels of the Google Play Game Services SDK (which you and I don't have source code access to), you probably need to file a bug with them via the "Bug Tracker" link on this page.

And it looks like you (or somebody doing the exact same thing as you) just reported it. :-)

于 2013-09-28T15:18:44.563 回答