成都网站建设设计

将想法与焦点和您一起共享

IOS字符串的Format可以对数值四舍五入

NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.0003]);
NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.9003]);
NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.5003]);
NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.4003]);
// 输出
1
2
2
1

本文标题:IOS字符串的Format可以对数值四舍五入
网页地址:http://chengdu.cdxwcx.cn/article/pjpjjg.html