NSDate References
NSDate
NSDateFormatter
NSDateComponents
NSDateComponentFormatter
NSCalendar
String与NSDate相互转换
获取当前系统时间:
let currentDate = NSDate()
打印输出:
初始化NSDateFormatter
dateFormatter.locale = NSLocale.currentLocale()
配置不同local identifier
dateFormatter.locale = NSLocale(localeIdentifier: "el_GR" ) //french dateFormatter.locale = NSLocale(localeIdentifier: "fr_FR") //greek
配置不同的NSDate输出格式
and short style
dateFormatter.dateStyle = NSDateFormatterStyle.ShortStyle convertedDate = dateFormatter.stringFromDate(currentDate)
配合不同的local identifier