vote up 1 vote down star

I'm sure this is a easy problem, but I just can not seem to find how to do this anywhere. I need to use the current Date and save it into a String. I do not know how to get the dat stamp. Could someone please help me out? Thank you for your time! -Jeff

flag

2 Answers

vote up 4 vote down check

You will need to set your format according to the docs

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM-dd-yy"];
NSString *date = [formatter stringFromDate:[NSDate date]];
link|flag
Thank you very much! – Jeff Nov 4 at 16:39
vote up 0 vote down

Use NSDateFormatter, heres a link with examples

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.