iOS: How to get a proper Month name from a number?

前端 未结 11 838
一向
一向 2020-11-30 22:43

I know that the NSDateformatter suite of functionality is a boon for mankind, but at the same time it is very confusing to me. I hope you can help me out.

Somewhere

11条回答
  •  -上瘾入骨i
    2020-11-30 23:37

    In Swift 3.0

        let monthNumber = 3
        let fmt = DateFormatter()
        fmt.dateFormat = "MM"
        let month = fmt.monthSymbols[monthNumber - 1]
        print(month)
    
        // result
       "March\n"        
    

提交回复
热议问题