用字符串iOS上的逗号分隔数字

前端之家收集整理的这篇文章主要介绍了用字符串iOS上的逗号分隔数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我转换时,我有一个NSInteger(比如值60000)
然而,它要串起来,我希望得到“60,000”
“60000”有办法吗?谢谢.

解决方法

使用数字格式化程序:
NSNumberFormatter *fmt = [[NSNumberFormatter alloc] init];
[fmt setNumberStyle:NSNumberFormatterDecimalStyle]; // to get commas (or locale equivalent)
[fmt setMaximumFractionDigits:0]; // to avoid any decimal

NSInteger value = 60000;

NSString *result = [fmt stringFromNumber:@(value)];
原文链接:https://www.f2er.com/iOS/335113.html

猜你在找的iOS相关文章