1.输入小数点后两位
发现包含小数点,并且小数点在倒数第三位就,如果再多就截掉。
NSInteger loca = [x rangeOfString:@"."].location;
if (loca+3<x.length&&loca>0) {
self.checkoutCountTextField.text = [x substringToIndex:loca+3];
}
2.精确到后两位
float value = 3.2349999;
float fValue =round(value*100)/100;
NSString *valueStr = [NSString stringWithFormat:@"%.2f",value];
借鉴,你可以借鉴一下,不能解决你的问题就不要当真。