Re: seconds into hours ?
Re: seconds into hours ?
- Subject: Re: seconds into hours ?
- From: Don Murta <email@hidden>
- Date: Fri, 22 Feb 2002 14:50:23 -0700
On Friday, February 22, 2002, at 02:38 PM, Steve Bird wrote:
On Friday, February 22, 2002, at 04:13 , Chris Boot wrote:
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.
That won't put the leading zeroes in it - look up the format specifiers.
try d instead of %d
_______________________________________________
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.