gpt4 book ai didi

ios - 具有不兼容类型 'double' 的表达式的 CLLocationDegrees

转载 作者:可可西里 更新时间:2023-11-01 05:09:28 30 4
gpt4 key购买 nike

主题说明了一切。为什么我在这两行收到此错误消息?

NSArray *coordinates = [locationDetails[@"coordinates"] componentsSeparatedByString:@","];
CLLocationDegrees *lat = [coordinates[1] doubleValue]; //here is the red arrow <----

并且会出现这条消息:

Initializing 'CLLocationDegrees *'(aka 'double *') with an expression of incompatible type 'double'

最佳答案

改变这个:

CLLocationDegrees *lat = [coordinates[1] doubleValue];

到:

CLLocationDegrees lat = [coordinates[1] doubleValue];

去掉星号。 CLLocationDegrees 不是类,它是 double(基本类型)的 typedef。

关于ios - 具有不兼容类型 'double' 的表达式的 CLLocationDegrees,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15931479/

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