let price = 123.436 as NSNumberlet formatter = NumberFormatter()formatter.numberStyle = .currency// formatter.locale = NSLocale.currentLocale() // This is the defaultformatter.string(from: price) // "3.44"formatter.locale = Locale(IDentifIEr: "es_CL")formatter.string(from: price) // 3"formatter.locale = Locale(IDentifIEr: "es_ES")formatter.string(from: price) // "123,44 €"@H_403_1@这里是如何使用它在Swift 2的老例子。
let price = 123.436let formatter = NSNumberFormatter()formatter.numberStyle = .CurrencyStyle// formatter.locale = NSLocale.currentLocale() // This is the defaultformatter.stringFromNumber(price) // "3.44"formatter.locale = NSLocale(localeIDentifIEr: "es_CL")formatter.stringFromNumber(price) // 3"formatter.locale = NSLocale(localeIDentifIEr: "es_ES")formatter.stringFromNumber(price) // "123,44€"总结
以上是内存溢出为你收集整理的努力与NSNumberFormatter在Swift货币全部内容,希望文章能够帮你解决努力与NSNumberFormatter在Swift货币所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)