我想使用 strftime 将 NSDate 转换为字符串,但%e
在一位数日期之前有一个空格。我该如何防止这种情况?或者,如果我不能,如果它是一个空格,那么删除位置 4 的字符的最佳方法是什么?
// TODO: Don't precede %e with blank for single-digit days. @issue
char buffer[22]; // Sep 22, 2012 12:15 PM -- 21 chars + 1 for NUL terminator \0
time_t time = [message.sentDate timeIntervalSince1970] - [[NSTimeZone localTimeZone] secondsFromGMT];
strftime(buffer, 22, "%b %e, %Y %l:%M %p", localtime(&time));
messageSentDateLabel.text = [NSString stringWithCString:buffer encoding:NSUTF8StringEncoding];