想要提取日期和時間,格式如下: Friday May 31, 2013 12:00 pm。
應該怎麼用NSDateFormatter
實現?
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
//cccc 星期全名 MMMM月全名
[dateFormat setDateFormat:@"cccc MMMM dd, yyyy hh:mm a"];
NSString *prettyVersion = [dateFormat stringFromDate:[NSDate date]];
還有疑問看這個表格
http://www.unicode.org/reports/tr35/tr35-25.html#Date_Format_Patterns