double knots = currentLocation.speed*1.943844492;
NSString *speed = [NSString stringWithFormat:@"%03.1f", knots];
这会产生一个没有前导零的正常单个十进制浮点数。目的是获得最多 3 位前导数字和一位小数。
double knots = currentLocation.speed*1.943844492;
NSString *speed = [NSString stringWithFormat:@"%03.1f", knots];
这会产生一个没有前导零的正常单个十进制浮点数。目的是获得最多 3 位前导数字和一位小数。