我试图获得我的本地日期,并使用NSDateFormatter以正确的方式编写它,但我得到了en_US和pt_BR(葡萄牙语-巴西)的混合。
以下代码:
let br_DateFormat = NSDateFormatter.dateFormatFromTemplate("ddMMMMyyyy", options: 0, locale: NSLocale(localeIdentifier: "pt_BR"))
let date = NSDate();
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = br_DateFormat
let localDate = dateFormatter.stringFromDate(date)
var data = String(localDate)
println(localDate)
印刷的是“2015年6月11日”
应该印的是“2015年11月11日”
你知道我在这里做错了什么吗?
最佳答案
您只需要将区域设置标识符设置为“pt_BR”
// this returns the date format string "dd 'de' MMMM 'de' yyyy" but you still need to set your dateFormatter locale later on
let br_DateFormat = NSDateFormatter.dateFormatFromTemplate("ddMMMMyyyy", options: 0, locale: NSLocale(localeIdentifier: "pt_BR"))
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = br_DateFormat
dateFormatter.locale = NSLocale(localeIdentifier: "pt_BR")
let localDate = dateFormatter.stringFromDate(NSDate())
print(localDate)
您将注意到,它不会像您希望的那样将月份大写,但您可以按照以下步骤处理此问题:
let localDate = dateFormatter.stringFromDate(NSDate()).capitalizedString.stringByReplacingOccurrencesOfString(" De ", withString: " de ", options: NSStringCompareOptions.LiteralSearch, range: nil)
println(localDate) // "11 de Junho de 2015"
关于swift - NSDateFormatter做错了,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30791052/