Discussion Forums  >  Plugins, Customizing, Source Code

Replies: 1    Views: 78

Jake Chasan
Veteran developer
Profile
Posts: 1685
Reg: May 13, 2011
location unknow...
29,650
06/05/13 04:13 PM (12 years ago)

Game Center Code (For BT_screen_quiz) (iOS 6)

Hi All, I have fixed all the warnings in the Game Center code for the BT_screen_quiz.m file (based on MGoBlue's Tutorial) Do not delete the section between //showscoreboard and //show quiz reward screen, as this section does not exist anymore. Here is the code: (Above "//show quiz reward screen") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //submit score -(void)submitScore{ if(totalPoints > 0) { [self.gameCenterManager reportScore: totalPoints forCategory: self.currentLeaderBoard]; } GKLeaderboardViewController *leaderboardController = [[GKLeaderboardViewController alloc] init]; if (leaderboardController != NULL) { leaderboardController.category = self.currentLeaderBoard; leaderboardController.timeScope = GKLeaderboardTimeScopeWeek; leaderboardController.leaderboardDelegate = self; [self presentViewController:leaderboardController animated:YES completion:nil]; } } //show scoreboard -(void)showScoreboard{ GKLeaderboardViewController *leaderboardController = [[GKLeaderboardViewController alloc] init]; if (leaderboardController != NULL) { leaderboardController.category = self.currentLeaderBoard; leaderboardController.timeScope = GKLeaderboardTimeScopeWeek; leaderboardController.leaderboardDelegate = self; [self presentViewController:leaderboardController animated:YES completion:nil]; } } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Also add another action sheet option (Find "//delegate method for action sheet clicks") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //submit score if([buttonTitle isEqual:NSLocalizedString(@"quizSubmitScore", @"Submit Score")]){ [self submitScore]; } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Jake
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
06/05/13 05:28 PM (12 years ago)
Nice stuff, Jake. Much Appreciated! :) Cheers! -- Smug
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.