gpt4 book ai didi

iphone - 使用 [NSNumber numberWithDouble :] 将 double 转换为 NSNumber

转载 作者:行者123 更新时间:2023-12-03 18:22:45 27 4
gpt4 key购买 nike

有一个坐标对象,具有三个变量纬度(NSNumber),经度(NSNumber)和时间(NSDate),为了在我的模拟器上检查程序,我给出了以下代码

[coordinate setLatitude:[NSNumber numberWithDouble:23.234223]];
[coordinate setLongitude:[NSNumber numberWithDouble:73.234323]];

但是当我NSLog坐标.纬度和坐标.经度时,它显示0.00000

NSLog(@"cordlat :  %f",coordinate.latitude);
NSLog(@"cordlong : %f",coordinate.longitude);

可能是什么问题???

最佳答案

您无法使用 %f 打印 NSNumber。您可以执行以下操作之一:

  1. NSLog(@"cordlat : %@", 坐标.纬度);
  2. NSLog(@"cordlat : %f",坐标.latitude.doubleValue);

关于iphone - 使用 [NSNumber numberWithDouble :] 将 double 转换为 NSNumber,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4266303/

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