Re: Date compiled?

2008-05-27 Thread Bill Monk
On 27 May '08, at 9:16 AM, Jeff LaMarche wrote: Is there any way to make this work with the standard about box, or do I have to hand-roll one in order to make this work? I'm assuming the latter, but figured I'd ask just in case; I hate reinventing the wheel. I've done this for a client

Re: Date compiled?

2008-05-27 Thread Andy Lee
On May 27, 2008, at 6:20 PM, Bill Monk wrote: NSString *compileDate = [NSString stringWithCString:__DATE__ encoding:NSASCIIStringEncoding]; NSString *compileTime = [NSString stringWithCString:__TIME__ encoding:NSASCIIStringEncoding]; Any reason not to do the following? NSString

Re: Date compiled?

2008-05-27 Thread ainxow
On May 27, 2008, at 6:31 PM, Andy Lee wrote: On May 27, 2008, at 6:20 PM, Bill Monk wrote: NSString *compileDate = [NSString stringWithCString:__DATE__ encoding:NSASCIIStringEncoding]; NSString *compileTime = [NSString stringWithCString:__TIME__