Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want current time in following format in a string.

dd-mm-yyyy HH:MM

How?

Thanks in advance.

Sagar

share|improve this question

2 Answers

up vote 61 down vote accepted

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.
share|improve this answer
Edited for iphone-ness. – Carl Norum Nov 6 '09 at 2:21
1  
<pedantic>don't forget to release your formatter.</pedantic> – Frank Schmitt Nov 6 '09 at 3:45
Unless you want to keep it around; memory management may or may not enter into the problem. – Carl Norum Nov 6 '09 at 6:09
4  
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 '09 at 6:08
1  
@Moshe, did you try reading the documentation? a is the format string for AM/PM period. unicode.org/reports/tr35/tr35-10.html#Date_Format_Patterns – Carl Norum Jan 26 '12 at 23:19
show 2 more comments

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);
share|improve this answer
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 '09 at 5:27
1  
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 '09 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 '09 at 23:06
1  
Did I really get a down vote for demonstrating a (perfectly valid) alternative solution? – Stephen Canon Nov 6 '09 at 23:41
this should be the preferred way on iOS becayuse of this bug stackoverflow.com/questions/143075/… , however i am finding that time() or localtime_r() are not always accurate, am seeing very weird results. – valexa Sep 12 '10 at 1:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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