Convert NSDate to String with strftime

2.6k Views Asked by At

How would I convert an NSDate to a NSString, formatted with strftime specifiers?

2

There are 2 best solutions below

1
On BEST ANSWER

you could use strftime.

NSDate *date = [NSDate date];
time_t time = [date timeIntervalSince1970];
struct tm timeStruct;
localtime_r(&time, &timeStruct);
char buffer[80];
strftime(buffer, 80, "%d.%m.%Y %H:%M:%S", &timeStruct);
NSString *dateStr = [NSString stringWithCString:buffer encoding:NSASCIIStringEncoding];

I hope it's correct.

3
On

You'll need an NSDateFormatter, using setDateFormat:. Here's the documentation.