gpt4 book ai didi

objective-c - 转换速度 : m/s to km/h

转载 作者:行者123 更新时间:2023-12-02 06:38:20 26 4
gpt4 key购买 nike

我是 Objective-C 的新手,希望在将 MPS 转换为 KPH 方面得到一些帮助。

以下是我当前的速度字符串。有人可以指出还需要什么吗?

speed.text = newLocation.speed < 0 ? @"N/A": [NSString stringWithFormat:@"%d", (int)newLocation.speed];

最佳答案

m/s 到 km/h = (m/s) * (60*60)/1000

或 1m/s = 3.6km/h

float speedInKilometersPerHour = newLocation.speed*3.6;
if (speedInKilometersPerHour!=0) {speed.text = [NSString stringWithFormat:@"%f", speedInKilometersPerHour];}
else speed.text = [NSString stringWithFormat:@"No Data Available"];

关于objective-c - 转换速度 : m/s to km/h,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13335310/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com