我目前正在开发一个适用于位置的应用程序,因此我有以下代码:
CLLocationCoordinate2d coord;
coord.longitude = [longitude doubleValue];
coord.latitide = [latitude doubleValue];
看起来是合法的,不是吗?现在经度和纬度是像“10.112233”这样的字符串。我知道通常 double 在那里没有积分,但是 cllocationcoordinate2d 想要这样......
现在,如果你 NSLog 字符串,它们工作得很好,但如果你 NSLog 的 doubleValues 它根本不返回任何内容。我该如何解决?