gpt4 book ai didi

iphone - iPhone 如何将 double 类型转换为 string 类型?

转载 作者:行者123 更新时间:2023-12-03 18:31:57 28 4
gpt4 key购买 nike

我正在计算 iPhone 的速度,我需要知道如何将 double 类型的变量calculatedSpeed 转换为字符串类型以显示在标签上。

这是我在标题中的内容:

@interface myProject : UIViewController <CLLocationManagerDelegate> {

double calculatedSpeed;
UILabel *velocityLabel;
}

这是我的主要内容:

-(void)speedLocation:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
double gpsSpeed = newLocation.speed;

if(oldLocation != nil)
{
CLLocationDistance distanceChange = [newLocation getDistanceFrom:oldLocation];
NSTimeInterval sinceLastUpdate = [newLocation.timestamp timeIntervalSinceDate:oldLocation.timestamp];
calculatedSpeed = distanceChange / sinceLastUpdate;

velocityLabel.text = calculatedSpeed;

}

}

请注意我如何尝试将velocityLabel 设置为calculatedSpeed,它是一个double 类型的变量。所以它自然地给了我错误:'setText:'的参数 1 的类型不兼容。

非常感谢您的帮助。

谢谢!

最佳答案

velocityLabel.text = [NSString stringWithFormat:@"%g", calculatedSpeed];

关于iphone - iPhone 如何将 double 类型转换为 string 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6687239/

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