我正在开发一个应用程序,我需要有标签显示时间,本地化为用户的区域设置。这一切都可以使用NSDateFormatter()
类。
let timeFormatter = NSDateFormatter()
timeFormatter.dateStyle = NSDateFormatterStyle.NoStyle
timeFormatter.timeStyle = NSDateFormatterStyle.ShortStyle
let timeStr: String = timeFormatter.stringFromDate(time)
但VoiceOver无法正确说出由NSDateFormatter()
生成的字符串。它对美国英语很不错,但不是荷兰语(我的母语)。
然后我尝试使用NSDateComponentsFormatter()
类并为NSDateComponentsFormatterUnitsStyle.SpellOut
属性指定unitsStyle
。
let timeComponentFormatter = NSDateComponentsFormatter()
timeComponentFormatter.unitsStyle = NSDateComponentsFormatterUnitsStyle.SpellOut
let accessibilityTimeStr: String = timeComponentFormatter.stringFromDateComponents(timeComponents)!
虽然这会产生一个可以由VoiceOver说出的好字符串,但它并不像母语人士那样说时间。虽然它使用了正确的语言,但它没有按照用户所在区域的文化惯例进行格式化。
当我在启用了VoiceOver的情况下点击锁定屏幕上的时间时,它会正确地说出时间,因为我会尝试使用我所尝试的每种语言。因此,iOS中必须有能够生成可由VoiceOver说出的正确字符串的内容。
我找不到这样做的公共API。我错过了什么或者这可能是私有API吗?