我正在尝试像这样保存浮动
[NSNumber numberWithFloat:[dosage floatValue]];
并像这样读取值:
dosage = [NSString stringWithFormat:@"%1.0f", [prop.dosage floatValue]];
问题是像 0.11 这样的数字最终是 0
我读过我可以使用NSNumberFormatter
,但文档对如何设置舍入不是很清楚。
我正在尝试像这样保存浮动
[NSNumber numberWithFloat:[dosage floatValue]];
并像这样读取值:
dosage = [NSString stringWithFormat:@"%1.0f", [prop.dosage floatValue]];
问题是像 0.11 这样的数字最终是 0
我读过我可以使用NSNumberFormatter
,但文档对如何设置舍入不是很清楚。