我有一个简单的计算
float x = ([_enterValue.text floatValue]);
//known constant number
float y = (My value here);
[_resultTxt setText:[NSString stringWithFormat:@"%f", x * y]];
结果stringWithFormat
有很多零,即。1.806700000000
我将如何去格式化这个所以我string
的只是像 1.8
我有一个简单的计算
float x = ([_enterValue.text floatValue]);
//known constant number
float y = (My value here);
[_resultTxt setText:[NSString stringWithFormat:@"%f", x * y]];
结果stringWithFormat
有很多零,即。1.806700000000
我将如何去格式化这个所以我string
的只是像 1.8