Re: seconds into hours ?
Re: seconds into hours ?
- Subject: Re: seconds into hours ?
- From: Chris Boot <email@hidden>
- Date: Fri, 22 Feb 2002 22:13:03 +0100
Hi,
>
I'm looking for the best way to translate seconds into hours such as :
>
>
Sec -> Hours
>
10 00:00:10
>
60 00:01:00
>
71 00:01:11
>
and so on...
>
>
Sec is an int value.
>
>
I tried with initWithFormat without success...
(I'm writing this into my e-mail client without testing, BTW).
static NSString *secsToTime(int inSecs)
{
int s, m, h;
s = inSecs % 60;
m = (inSecs / 60) % 60;
h = inSecs / 3600;
return [NSString stringWithFormat:@"%d:%d:%d", h, m, s];
}
This should do it. Note that I haven't tried this, nor even compiled this.
I only wrote it into Entourage from my head.
Good luck,
--
Chris Boot
email@hidden
[bootc@tequila bootc]$ make sense
make: *** No rule to make target `sense'. Stop.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.