This question already has answers here:
How do I convert an integer to the corresponding words in objective-c?

(7个答案)


2年前关闭。




我有一个文本字段,用户将在其中输入金额(例如10,000)。一旦完成编辑,金额应在标签中以单词(两万)显示。

如何才能做到这一点?

最佳答案

该代码对我有用: Swift 3.2 / 4:

let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = .spellOut

let string = numberFormatter.string(from: 10000)
print(string)

输出:

关于ios - Swift 3:将金额转换为单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47986392/

10-12 21:13