-1

我对 Xcode 真的很陌生,我想知道如何从 Xcode 中的字符串重新格式化日期?

这是字符串格式:年-月-日

如何将其更改为以下格式的字符串:月-日-年?

喜欢 12-09-2012

非常感谢!

4

1 回答 1

0

我遇到了这个,https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DataFormatting/Articles/dfDateFormatting10_4.html

它显示以下内容,希望这会有所帮助,

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateFormat:@"yyyy-MM-dd 'at' HH:mm"];

NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:162000];

NSString *formattedDateString = [dateFormatter stringFromDate:date];

NSLog(@"formattedDateString: %@", formattedDateString);

  // For US English, the output may be:

  // formattedDateString: 2001-01-02 at 13:00
于 2012-12-10T02:22:37.773 回答