Objective-c 中保留小数点后几位

在TextFiled中显示小数点后几位,如何希望保留2位,在f前加上.2即可

  

@property float num1=11.1111111111;

 self.textFiled.stringValue=[NSString stringWithFormat:@"%.2f",self.num1];


你可能感兴趣的:(MacOS开发,Objective-C,objective-c,小数点后几位)