Swift: formatação NSDate com strftime e hora local

Como converter o seguinte código Objective-C em código Swift?

#define MAX_SIZE 11
char buffer[MAX_SIZE];
time_t time = [[NSDate date] timeIntervalSince1970];
strftime(buffer, MAX_SIZE, "%-l:%M\u2008%p", localtime(&time));
NSString *dateString = [NSString stringWithUTF8String:buffer];
NSLog(@"dateString: %@", dateString); // dateString: 11:56 PM

Estou formatando umdate.

questionAnswers(4)

yourAnswerToTheQuestion