我正在使用swift2。
我使用了这段代码:
let calendar = NSCalendar.currentCalendar()
let components = calendar.components(.CalendarUnitMonth | .CalendarUnitDay, fromDate: theDate)
我收到此错误:找不到会员'CalendarUnitMonth '
答案 0 :(得分:10)
检查Swift 2文档并搜索OptionSetType
(由NSCalendarUnit
采用)。您可以这样使用它:
let calendar = NSCalendar.currentCalendar()
let components = calendar.components([.Month, .Day], fromDate:NSDate())