我打電話領先榜是這樣的:遊戲中心呼叫排行榜功能沒有響應?
-(void)viewscores:(SPEvent*)event
{
GKLeaderboardViewController *leaderboardController = [[GKLeaderboardViewController alloc] init];
if (leaderboardController != nil) {
leaderboardController.leaderboardDelegate = self;
UIWindow* window = [UIApplication sharedApplication].keyWindow;
[window addSubview: self.rootViewController];
[self presentModalViewController: leaderboardController animated: YES];
}
}
當我點擊排行榜按鈕,我收到一個錯誤:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[UIViewController presentModalViewController:animated:]: unrecognized selector sent to class 0x3e2fc7f8'
這是正常的嗎?
你在用什麼文件使用這種方法? –
我打電話給我的Game.m文件 – Raoul