**NSLog(@"%0.2f", 1.345); // output 1.34**
NSLog(@"%0.2f", 1.3451);// output 1.35
NSLog(@"%0.2f", round(1.345 * 100)/100.);//output 1.35
为什么第一行输出 1.34?!!
========================================
更新:
NSLog(@"%.2f", round([@"644.435" doubleValue] * 100) / 100); // output 644.43,
但
NSLog(@"%.2f", round([@"6.435" doubleValue] * 100) / 100); // output 6.44?
如果我想将 NSString 转换为在点后保留两位数,请您告知如何转换?