I have an integer in seconds, that when converted to minutes is less than 60 minutes (So no need to worry about hours). I want to convert the seconds string to a format like this:
int seconds = 352;
...
NSString *time = @"05:52";
NOTE: minutes must have the 0 in front of it if its less than 10 minutes. Same for seconds obviously :)
Max
Start Free Trial