Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ARC 并调用 LocationManager 来获取纬度和经度,但是在调用代表之前,内容正在被释放。以前有人遇到过这个问题吗?如果可能,我该如何解决这个问题?
谢谢。
定义一个属性来保存对您的位置管理器的引用:
@proerty (strong,nonatomic) CLLocationManager *locationManager;
然后在分配位置管理器时的 .m 文件中:
self.locationManager = [[CLLocationManager alloc] init];