vote up 0 vote down star

I want current time in following format in a string.

dd-mm-yyyy HH:MM

How?

Thanks in advance.

Sagar

flag

2 Answers

vote up 8 vote down check

You want a date formatter. Here's an example:

NSDateFormatter *formatter;
NSString        *dateString;

formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd-MM-yyyy HH:mm"];

dateString = [formatter stringFromDate:[NSDate date]];

[formatter release];  // maybe; you might want to keep the formatter 
                      // if you're doing this a lot.
link|flag
Edited for iphone-ness. – Carl Norum Nov 6 at 2:21
1  
<pedantic>don't forget to release your formatter.</pedantic> – Frank Schmitt Nov 6 at 3:45
Unless you want to keep it around; memory management may or may not enter into the problem. – Carl Norum Nov 6 at 6:09
2  
Date formatters are really slow to set up. If you are setting dates in a table cell or doing it a lot, as was mentioned above, you'll want to retain it, us it for everything, then release it in dealloc. – Steve Weller Nov 7 at 6:08
vote up 1 vote down

Either use NSDateFormatter as Carl said, or just use good old strftime, which is also perfectly valid Objective-C:

#import <time.h>
time_t currentTime = time(NULL);
struct tm timeStruct;
localtime_r(&currentTime, &timeStruct);
char buffer[20];
strftime(buffer, 20, "%d-%m-%Y %H:%M", &timeStruct);
link|flag
Note that you can't do too much with a C string in Objective C. This might be more convenient when logging something to the console. You can just say NSLog(@"%s", buffer). – Dustin Voss Nov 6 at 5:27
Anything you can do with a C string in C, you can do in Objective-C. Which is to say, pretty much everything. One should feel free to use both C strings and NSStrings, and pick the appropriate one for the current use case. I personally would go with Carl's solution, but it's important to be aware that it's not the only way. – Stephen Canon Nov 6 at 15:28
I would say the reason not to use strftime (despite it generating a C string that you then have to convert) is that you also lose out on the far greater flexibility of the NSDateFormatter date formatting options, including more variable length of numeric results and so on. – Kendall Helmstetter Gelner Nov 6 at 23:06
Did I really get a down vote for demonstrating a (perfectly valid) alternative solution? – Stephen Canon Nov 6 at 23:41

Your Answer

Get an OpenID
or

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