cllocationmanager

    7熱度

    1回答

    當我點擊導航欄上的後退鍵並卸載了具有MapKit(mapView)並使用位置管理器的視圖時,我的應用程序崩潰了「EXC_BAD_ACCESS」。嘗試了天修復bug終於想出了一個任何人修復程序遇到這樣的問題: 此代碼添加到您的dealloc - (void)dealloc { mapView.delegate = nil; locationManager.delegate = n

    6熱度

    1回答

    如果我想在地圖上顯示userLocation,並同時記錄用戶的位置,最好將觀察者添加到userLocation.location並記錄位置,或者應該我仍然使用CLLocationManager記錄用戶位置並使用mapView.showUserLocation顯示用戶的當前位置(藍色指示符)?我想顯示MapKit API支持的默認藍色指標。 而且,這裏有一個粗略的示例代碼: - (void)view

    0熱度

    3回答

    我正在寫一些代碼得到一些價值當然也包括 -(void) locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { //somecode NSString *dirString

    3熱度

    1回答

    我嘗試使用cllocation和mkreversegeocoder撤回城市名稱。 在我viewDidLoad方法我istance cllocationmanager: self.locManager = [[CLLocationManager alloc] init]; locManager.delegate = self; locManager.desiredAccuracy = kCLLo

    0熱度

    2回答

    我使用以下條件來確保我獲得的位置具有足夠的準確性,在我的情況下爲kCLLocationAccuracyBest。但問題是我仍然得到不準確的位置。 // Filter out nil locations if(!newLocation) return; // Make sure that the location returned has the desired accuracy

    12熱度

    1回答

    1周,如果我的GPS應用程序無法檢索信號(例如:在我家裏測試)我沒有收到任何ALER。 我安裝我的錯誤通知以這種方式 - (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error { NSString *errorType = (error.code == kCLErrorDenied

    5熱度

    2回答

    我一直在試圖找到任何方法來優化我的基於位置的iPhone應用程序的性能,並且看到一些人提到您可以通過啓動和停止CLLocationManager來強制執行位置更新。我需要獲得最佳的準確性,而我的情況下,用戶可能會希望在他們四處走動時每隔幾秒鐘(例如10秒)看到更新。我已經設置了相應的過濾器,但是我注意到有時候我有一段時間沒有在設備上進行任何更新。 我測試下面的方法,當固定的時間間隔過去(我使用20

    1熱度

    2回答

    所以,我跟着其他相關的線程,但由於某種原因,我仍然有這個錯誤,我準備把我的頭髮。我已經實現了locationManager:didFailWithError來檢查並查看用戶是否選擇「不允許」來使用當前位置。 -(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error { NSLog(@

    1熱度

    1回答

    使用MKReverseGeocoder或GoogleAPI或MapKit ... 是否有轉經/緯度到「最近的主要交叉路段」一個簡單的方法? 用戶可能對「12345菠蘿」所在的位置沒有任何想法......所以我想展示像「菠蘿和主要」......或(大型主要道路),如「US-140和Hwy 76" 。 我真的不關心什麼是「重大」定義爲......也許限速較高任何道路...或3米以上的車道......等

    0熱度

    1回答

    「UIAccelerometer」和「CLLocationManager」有什麼區別?兩者都給我x,y和z軸作爲結果。 UIAccelerometer X -18.000 ý -03.500 Ž -41.000 CLLocationManager X -0.036 Ÿ -0.002 ž -1.069 是從不同的格式相同的傳感器的信息?還是存在「真正的」差異? 謝謝!