i am developing an app that uses game center but i am having a problem. I would like the player to submit their score to a leader board so they can challenge friends. Here is the code for the NSString score.
-(IBAction)gasPedalPressed:(id)sender {
double noSeconds = (double) [self.startDate timeIntervalSinceNow] * -1000;
NSString *reactionTime= [[NSString alloc] initWithFormat:@"Good Job! You're reaction time is %1.0f Ms. Let's see if you can do better...", noSeconds];
NSString *time= [[NSString alloc] initWithFormat:@"%1.0f Ms", noSeconds];
if(greenLightOn == 0)
reactionTime = @"Slow down! You have to wait for the green light. Let's see if you can do better...";
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Reaction Time" message:reactionTime
delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
and this is what i want that to comply with:
-(IBAction)submitscore:(id)sender {
GKScore *scoreReporter = [[GKScore alloc] initWithCategory:@"1234567890"];
scoreReporter.value = score.text;
[scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
if (error !=nil) {;
NSLog(@"failed sub score");
} else {
NSLog(@"submitted score");
}
}
];
}
Please Help!!
-[NSString intValue]work for you? – Costique Jan 26 '12 at 20:41