-(IBAction)passButton:(id)sender{
passCounter++;
passLabel.text = [NSString stringWithFormat:@"(%i)",passCounter];
}
solved Change label to integer using string with format [closed]
-(IBAction)passButton:(id)sender{
passCounter++;
passLabel.text = [NSString stringWithFormat:@"(%i)",passCounter];
}
solved Change label to integer using string with format [closed]