菜鸟教程小白 发表于 2022-12-12 17:29:50

ios - CLLocationManager 不回调委托(delegate)中的方法


                                            <p><p>CLLocationManager 不回调方法:</p>

<pre><code>locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
</code></pre>

<p>在用户许可后。</p>

<p>我在单例类(某种管理器)中分配 <code>CLLocationManager</code> 实例,将委托(delegate)分配给自己,一切看起来都很好,但不起作用。</p>

<p>我的应用程序中还有许多多线程逻辑,我认为问题是死锁或与多线程相关的其他问题。</p>

<p>我怎样才能揭示问题所在。</p>

<p>附:我也试过打电话 </p>

<pre><code>startMonitoringSignificantLocationChanges;
</code></pre>

<p>在主线程上,这没有帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>好的,经过几个小时的尝试,我发现了这个:
<a href="https://stackoverflow.com/questions/12218118/cllocationmanager-delegates-not-working-after-initialization" rel="noreferrer noopener nofollow">post</a> .</p>

<p>解决办法是在主线程上分配CLLocationManager。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CLLocationManager 不回调委托(delegate)中的方法,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20724529/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20724529/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CLLocationManager 不回调委托(delegate)中的方法