How to format time with NSDateFormatter like this HH:mm:ss

1.4k Views Asked by At

I have the duration of a song in seconds.

After following calculations, I have the time in hour, minutes and seconds.

int hour = time / 3600;
int minute = (time / 60) % 60;
int second = time % 60;

I need to show them with this format HH:mm:ss

How can I do that?

6

There are 6 best solutions below

0
On BEST ANSWER

It could be helpful

- (NSString *)timeFormatted:(int)totalSeconds
{

    int seconds = totalSeconds % 60; 
    int minutes = (totalSeconds / 60) % 60; 
    int hours = totalSeconds / 3600; 

    return [NSString stringWithFormat:@"%02d:%02d:%02d",hours, minutes, seconds]; 
}
1
On

Try it

int hour = time / 3600;
int minute = (time / 60) % 60;
int second = time % 60;

 NSString *dateStr = [NSString stringWithFormat:@"%d %d %d",hour,minute,second];

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"HH:mm:ss"];
    NSDate *date1 = [dateFormat dateFromString:dateStr];

Hope it will help you.

2
On

You needn't to use a NSDateFormatter according to your description

int hour = time / 3600;
int minute = (time / 60) % 60;
int second = time % 60;

NSString *yourDate = [NSString stringWithFormat:@"%02d:%02d:%02d", hour, minute, second, null];
0
On

This will append 0 and make it exactly 2 characters..

NSString *str = [NSString stringWithFormat:@"%02d:%02d:%02d",hour,minute,second ];
1
On
NSString *time = [NSString stringWithFormat:@"%d:%d:%d", hour, minute, second];
1
On

Try this code

   float seconds = totalSeconds % 60; 
   float minutes = (totalSeconds / 60) % 60; 
   float hours = totalSeconds / 3600; 
   return [NSString stringWithFormat:@"%02f:%02f:%02f",hours, minutes, seconds];