cllocationmanager

    1熱度

    1回答

    我正在使用JSQMessagesViewController在我的應用程序中實現聊天。我希望能夠向用戶發送我正在與我的位置聊天。這就是我所做的。 func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { self.latestLocation = lo

    1熱度

    1回答

    我想,當用戶從任何地圖銷300米(所有引腳從API來) 我通過計算距離發送通知之間的距離.. currentLocation = CLLocationManager() currentLocation!.distance(from: pinLoc) 我得到的距離吧,不過,爲了跟蹤用戶的位置(駕駛),我必須把我的代碼中(didUpdateLocations)功能,這將不斷循環永遠[我不使用st

    1熱度

    2回答

    我正在尋找一種方法,可以跟蹤用戶到達指定座標集附近的情況。該功能需要在應用程序處於後臺時工作(最好在100米以內)。另外,爲了保存電池,我最好不要想太多的座標讀數(也許每10分鐘讀一次,時間不超過幾個小時)。 有一對夫婦的,我試圖完成這項任務的方式,但一直未能取得理想的結果: 背景定時器: 我在添加一個後臺任務( App.delegate) func applicationDidEnterBack

    1熱度

    1回答

    我想使用allowDeferredLocationUpdates(untilTraveled:超時:)推遲位置更新。隨後的文檔是https://developer.apple.com/documentation/corelocation/cllocationmanager/1620547-allowdeferredlocationupdates。 即使通過嘗試各種方式,從調試器取下手機,保持手機閒

    0熱度

    1回答

    我是新手編碼器,我正在使用教程來幫助我學習。 我正在做一個天氣應用程序,但我收到這個錯誤,並希望有人可以幫助。 'CLLocationManagerDelegate' 不能建造,因爲它沒有可訪問的初始化 謝謝。

    0熱度

    1回答

    我一直在iOS 11中的「允許使用」和「始終允許」位置服務遇到問題。 iOS中的問題沒有問題< 11.在嘗試修復時遵循此thread,但仍然無效。我錯過了什麼?先謝謝你。 我在我的應用程序UITabViewController和UINavigationController每個選項卡內。 我有一個singleton LocationManager類。我將我的UINavigationControlle

    0熱度

    1回答

    我在的.plist添加了所有3個可能的密鑰獲取背景位置更新: 隱私 - 位置始終和使用時使用情況說明 隱私 - 位置在使用時的用法說明 隱私 - 位置用法說明 我的代碼是: private lazy var locationManager: CLLocationManager = { let manager = CLLocationManager() manager.desir

    0熱度

    2回答

    我可以在表格上顯示位置列表。但現在我想根據當前位置對其進行排序。 這是我怎麼顯示我的位置: func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentif

    4熱度

    1回答

    iOS的對話框提示和消失後半秒: let locationManager = CLLocationManager() switch CLLocationManager.authorizationStatus() { case .authorizedWhenInUse: print("In Use \(locationManager.location?.des

    3熱度

    1回答

    我試圖寫一個簡單的方法,餵了CLLocationDegrees並返回CLPlacemark。看着Apple's documentation,這看起來很簡單。 下面是我所傾倒入一個遊樂場: import CoreLocation // this is necessary for async code in a playground import PlaygroundSupport // th