我如何将 NSDate() 分成几部分?

How can i divide NSDate() into pieces?

func date() -> String {
return NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: NSDateFormatterStyle.ShortStyle, timeStyle: NSDateFormatterStyle.MediumStyle)
}

var date = date() // 2016. 5. 13. 오전 4:45:16

以上代码,每次调用date()时,date都会获取韩文当前日期值

我希望从 NSDate() 中刷新新值,因此将刷新新值插入到变量中,如下面的代码

var yearMonDay = "2016. 5. 13"
var hourMinSec = "오전 4:45:16"

hmmm 有没有像下面代码那样将 NSDate() 分成多个部分的方法?

yearMonDay = NSDate().?? // refresh date "year: month: day"
hourMinSec = NSDate().?? // refresh date "am/fm hour:minute:second

您可以使用 NSDateFormatterStyle:

// get the current date and time
let currentDateTime = NSDate()

// initialize the date formatter and set the style
let formatter = NSDateFormatter()

// October 26, 2015
formatter.timeStyle = NSDateFormatterStyle.NoStyle
formatter.dateStyle = NSDateFormatterStyle.LongStyle
formatter.stringFromDate(currentDateTime)

// 6:00:50 PM
formatter.timeStyle = NSDateFormatterStyle.MediumStyle
formatter.dateStyle = NSDateFormatterStyle.NoStyle
formatter.stringFromDate(currentDateTime)

可以使用 NSCalendar 的组件来拆分小时等组件

let today       = NSDate()
let calendar    = NSCalendar(identifier: NSCalendarIdentifierGregorian)!
let components  = calendar.components([.Year, .Month, .Day, .Hour, .Minute, .Second], fromDate: today)
print("\(components.month)      \(components.day)     \(components.year)")
print("\(components.hour)      \(components.minute)     \(components.second)")

使用 NSDate 格式化程序,您可以找到名称

let formatter   = NSDateFormatter()
let monthName = formatter.monthSymbols[components.month-1]
print(monthName)