gpt4 book ai didi

iOS CLLocation 属性不保留值

转载 作者:行者123 更新时间:2023-11-29 10:49:01 26 4
gpt4 key购买 nike

我试图在内存中保存 self.mapView.userLocation.locationCLLocation属性,但在我将值分配给属性并检查属性的值后,我得到了这个:

<+0.00000000,+0.00000000> +/- 0.00m (speed -1.00 mps / course -1.00) @ 1/19/14 4:21:14

这是我的代码:

.h:

@property (retain, nonatomic) CLLocation *currentlocation;

在我的 .m 上

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
if (self.currentlocation != self.mapView.userLocation.location)
{
self.currentlocation = self.mapView.userLocation.location;
}

}

我的问题是谁可以在self.currentlocation 上保留self.mapView.userLocation.location 的值|并将其保存在内存中?

非常感谢您的帮助。

最佳答案

您正在将一个指针分配给另一个指针。因此,您实际上只是存储了对 MKUserLocation 位置的引用。

听起来你当时想存储这个值,而不想让它改变。如果是这样:

 self.currentLocation = [self.mapView.userLocation.location copy];

存储一份副本应该可以满足您的需求。

关于iOS CLLocation 属性不保留值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21224551/

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