1
假設在啓動位置服務在默認設置頁面中關閉。我在應用按鈕開啓位置服務,如果我第一次點擊,它顯示了默認警報更改設置開啓didUpdateToLocation警報僅呼叫兩次
locationmanager = [[CLLocationManager alloc]init];
[locationmanager setDelegate:self];
[locationmanager setDesiredAccuracy:kCLLocationAccuracyBest];
[locationmanager startUpdatingLocation];
這是工作的罰款兩次。但如果第三次定位服務處於關閉狀態,並點擊按鈕,它不會顯示任何警報。我無法知道CLLocation行爲。可能它不是一個好問題,但我仍然想澄清這個概念。如果有人有一些想法,那麼請幫助我。
謝謝。