我監視用戶的位置。這些結構:如何手動觸發CLLocationManager更新?
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyThreeKilometers
locationManager.requestAlwaysAuthorization()
locationManager.startMonitoringSignificantLocationChanges()
我有一個開關,其允許用戶手動輸入一個地址或允許GPS跟蹤。從手動切換到GPS位置時,我想踢出CLLocationManager
以更新用戶位置並致電didUpdateLocations
事件。否則,它只是等待並等待更新。是否可以一次手動觸發更新?