CLLocationManager 不回调方法:
locationManagerCLLocationManager *)manager didChangeAuthorizationStatusCLAuthorizationStatus)status;
在用户许可后。
我在单例类(某种管理器)中分配 CLLocationManager 实例,将委托(delegate)分配给自己,一切看起来都很好,但不起作用。
我的应用程序中还有许多多线程逻辑,我认为问题是死锁或与多线程相关的其他问题。
我怎样才能揭示问题所在。
附:我也试过打电话
startMonitoringSignificantLocationChanges;
在主线程上,这没有帮助。
Best Answer-推荐答案 strong>
好的,经过几个小时的尝试,我发现了这个:
post .
解决办法是在主线程上分配CLLocationManager。
关于ios - CLLocationManager 不回调委托(delegate)中的方法,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20724529/
|