ios - 仅显示一个位置权限警报

标签 ios swift core-location info-plist

我希望我的应用程序在事件和后台模式下获取位置(如果仅使用 NSLocationAlwaysUsageDescription 权限,则 myLocationButton 不会显示)。 我在Info.plist中设置:

<key>NSLocationAlwaysUsageDescription</key>
<string>$(PRODUCT_NAME) location use</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>$(PRODUCT_NAME) location use</string>
<key>UIBackgroundModes</key>

并添加MapViewController

self.locationManager.requestWhenInUseAuthorization()
self.locationManager.requestAlwaysAuthorization()

但是当应用程序启动时,只显示第一个位置权限警报,重新打开应用程序后会出现第二个权限警报。

更新:

override func viewDidLoad() {
        super.viewDidLoad()
 ...    
 locationManager.delegate = self
 locationManager.requestWhenInUseAuthorization()
 viewMap.addObserver(self, forKeyPath: "myLocation", options: NSKeyValueObservingOptions.new, context: nil)
        self.startLocationUpdates()
 ...
}

func startLocationUpdates() {
    self.locationManager.delegate = self
    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
    self.locationManager.activityType = CLActivityType.automotiveNavigation
    self.locationManager.distanceFilter = distanceFilterMetr
    self.locationManager.requestAlwaysAuthorization()
    self.locationManager.startUpdatingLocation()
}

override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {

        let myLocation: CLLocation = change?[NSKeyValueChangeKey.newKey] as! CLLocation
        viewMap.camera = GMSCameraPosition.camera(withTarget: myLocation.coordinate, zoom: observeZoom)
        mapRoute.coordinateLatitude = myLocation.coordinate.latitude
        mapRoute.coordinateLongitude = myLocation.coordinate.longitude
        viewMap.delegate = self
        viewMap.settings.myLocationButton = true
        viewMap.settings.compassButton = true
        didFindMyLocation = true
}

最佳答案

将此委托(delegate)添加到您的类(class)中:

CLLocationManagerDelegate

现在在你的类里面:

var locationManager:CLLocationManager!
var map = GMSMapView()
var currentLatitude:Double!
var currentLongitude:Double!

之后将其添加到您的代码中:

override func loadView() {

    print("loadView called")

    // Enable some map settings

    map.isMyLocationEnabled = true
    map.settings.myLocationButton = true
    map.settings.compassButton = true
    map.settings.scrollGestures = true
    map.settings.zoomGestures = true
    map.delegate = self

    view = map
}

override func viewDidLoad() {

    super.viewDidLoad()

    print("ViewDidLoad called")

    // Configuring location manager.

    locationManager = CLLocationManager()
    locationManager.delegate = self
    locationManager.requestAlwaysAuthorization()
    locationManager.desiredAccuracy = kCLLocationAccuracyBest
    locationManager.startUpdatingLocation()
    locationManager.startMonitoringSignificantLocationChanges()
}

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {

    print("locationManager function called")

    // Fetch current location coordinates

    let locValue:CLLocationCoordinate2D = (locationManager.location?.coordinate)!
    currentLatitude = locValue.latitude
    currentLongitude = locValue.longitude
    print("Current Location = \(currentLatitude!), \(currentLongitude!)")

    // Zoom to current location

    let target = CLLocationCoordinate2D(latitude: currentLatitude!, longitude: currentLongitude!)
    map.camera = GMSCameraPosition.camera(withTarget: target, zoom: 17)

    locationManager.stopUpdatingLocation()

}

添加此代码后,右键单击您的 Info.plist 并选择“作为源代码打开”。将其添加到您的 Info.plist 中。

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>googlechromes</string>
    <string>comgooglemaps</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSBluetoothPeripheralUsageDescription</key>
<string></string>
<key>NSCameraUsageDescription</key>
<string></string>
<key>NSContactsUsageDescription</key>
<string></string>
<key>NSLocationUsageDescription</key>
<string></string>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>NSLocationAlwaysUsageDescription</key>
<string></string>
<key>NSMicrophoneUsageDescription</key>
<string></string>
<key>NSMotionUsageDescription</key>
<string></string>
<key>NSPhotoLibraryUsageDescription</key>
<string></string>
<key>NSRemindersUsageDescription</key>
<string></string>
<key>NSSiriUsageDescription</key>
<string></string>
<key>NSSpeechRecognitionUsageDescription</key>
<string></string>
<key>NSVideoSubscriberAccountUsageDescription</key>
<string></string>

关于ios - 仅显示一个位置权限警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43342146/

相关文章:

ios - 使用 SQLite (Swift) 将数据库更改保存到 .db 文件中

ios - 如何在快速点击时更改 UIButton 的背景颜色?

ios - 使用核心位置时行进距离值不准确

core-location - 隐私 - 位置默认精度降低 (NSLocationDefaultAccuracyReduced) 不尊重

ios - 无法在 Swift 2 中将类型 '__NSCFNumber' 的值转换为 'NSString'

ios - 从解析中检索用户数据以快速显示在 TableView 中

ios - Swift 2.0/iOS 9 兼容性

ios - 如何将插图添加到 UILabel (iOS Swift)?

android - 如何找到适用于 Android 和 iOS 的可信证书?

ios - Swift 3 - 缩放 ImageView