将currentCalendar()Date转换为NSCalendarIdentifierChinese

时间:2015-12-17 08:09:39

标签: swift swift2 nscalendar

我已经写了这个函数,以便在过去的100年里在中国历法上获得一年中的第一天。从循环返回的一些值是正确的。我已通过此链接验证了中国新年的日期http://www.fengshuimiracle.com/154/how-work-out-your-animal-sign-and-chinese-year 。是否有可以引用的农历,或者我的代码中缺少某些东西。

 override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
           loopthrough()

}

func returnDateForMonth(month:NSInteger, year:NSInteger, day:NSInteger)->NSDate{
    let comp = NSDateComponents()
    comp.month = month
    comp.year = year
    comp.day = day

    let chCal = NSCalendar(calendarIdentifier: NSCalendarIdentifierChinese)
    return chCal!.dateFromComponents(comp)!
}

func showDate(getDate:NSDate)->String{
    let date = getDate
    //let calendar = NSCalendar.currentCalendar()
    let calendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierChinese)
    let dateComponents = calendar!.components([NSCalendarUnit.Year], fromDate: date)
    let firstDay = returnDateForMonth(dateComponents.month, year: dateComponents.year, day: 1)
    let dateFormatter = NSDateFormatter()
    dateFormatter.dateFormat = "dd-MMM-yy"
    let formattedDate = dateFormatter.stringFromDate(firstDay)
    //print("First day of this month: \(formattedDate)") // 01-Sep-15
    print(formattedDate)
    return formattedDate
}



func substractyear(getI:Int)->String{

    let getInt = getI * -1
    let components: NSDateComponents = NSDateComponents()
    components.setValue(getInt, forComponent: NSCalendarUnit.Year);
    let date: NSDate = NSDate()
    let expirationDate = NSCalendar.currentCalendar().dateByAddingComponents(components, toDate: date, options:NSCalendarOptions(rawValue: 0))

    return showDate(expirationDate!)

}


func loopthrough(){

    for var i = 1; i < 100; i++ {
        //print("\(i)")
        substractyear(i)

    }

}

输出

31-JAN-14 10-FEB-13 23-JAN-12 03月11 14-FEB-10 26-JAN-09 07月 - 08 18月 - 07 29-JAN-06 09月 - 05 22-JAN-04 01月03 12月 - 02 1月24日 - 01 05 - 2月 - 00 16月99 28-JAN-98 07月 - 97 19-FEB-96 31-JAN-95 10-FEB-94 23-JAN-93 04月 - 92 15月 - 91 1月27日90 06月89 17-FEB-88 29-JAN-87 09月86 20月85 02 - 84 10-FEB-43 22-JAN-42 01-FEB-41 12-FEB-40 1月24日 - 39 04月 - 38 15-FEB-37 28-JAN-36 08 - 2月 - 35 19-FEB-34 31-JAN-33 11-FEB-32 23-JAN-31 03月 - 30 13月29 26-JAN-28 06月27 17月 - 26 29-JAN-25 10-FEB-24 22-JAN-23 01月 - 22 12-FEB-21 25-JAN-20 05 - 2月19 16-FEB-18 1月28日17 08月16 19月15 31-JAN-14 10-FEB-13 23-JAN-12 03月11 14-FEB-10 26-JAN-09 07月 - 08 18月 - 07 29-JAN-06 09月 - 05 22-JAN-04 01月03 12月 - 02 1月24日 - 01 05 - 2月 - 00 16月99 28-JAN-98 07月 - 97 19-FEB-96 31-JAN-95 10-FEB-94 23-JAN-93 04 - 2月 - 92 15月 - 91 1月27日90 06月89 17-FEB-88 29-JAN-87 09月86 20月85 02 - 84 10-FEB-43 22-JAN-42 01-FEB-41 12-FEB-40 1月24日 - 39 04月 - 38 15-FEB-37 28-JAN-36

1 个答案:

答案 0 :(得分:1)

我不确定这是否能解答您的问题,但我认为您的代码可以大大简化:

let chineseCalendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierChinese)!
let formatter: NSDateFormatter = {
    let fmt = NSDateFormatter()
    fmt.dateStyle = .FullStyle
    fmt.timeStyle = .MediumStyle
    fmt.dateFormat = "dd-MMM-yy"
    return fmt
}()

var comps = chineseCalendar.components([.Year], fromDate: NSDate())
for _ in 0..<100 {
    comps.year -= 1
    guard let newYear = chineseCalendar.dateFromComponents(comps) else { fatalError("no date for \(comps.year)") }
    print(formatter.stringFromDate(newYear))
}

而且,我不确定你的原始来源是否正确。 This page列出了不同的日期(似乎更符合NSCalendar输出)。