If I have a string from key and the string is a timer (12:00) how to add 1 minute to the timer, so the label will show 12:01:
NSString string = [subDict objectForKey:@"1"];
NSScanner timeScanner=[NSScanner scannerWithString:string];
int hours,minutes;
[timeScanner scanInt:&hours];
[timeScanner scanString:@":" intoString:nil];
[timeScanner scanInt:&minutes];
Thanks