1

你好

我想获取用户位置,代码第一次在 didUpdateLocations 中获取位置。但在几秒钟后应用程序崩溃。

崩溃是: 在此处输入图像描述

我正在使用的代码

import UIKit
import CoreLocation

class HomeViewController: UIViewController, UIScrollViewDelegate ,UICollectionViewDataSource, UICollectionViewDelegate, CLLocationManagerDelegate  { 

// Location Manager
var locationManager: CLLocationManager = CLLocationManager()

//MARK: Location related functions
func trackLocation(){
    // Set the delegate
    self.locationManager.delegate = self
    
    // Request location authorization
    self.locationManager.requestWhenInUseAuthorization()
    
    // Request a location update
    if #available(iOS 9.0, *) {
        self.locationManager.requestLocation()
    } else {
        // Fallback on earlier versions
    }

    // Start location updates
    self.locationManager.startUpdatingLocation()
    
}

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    if let location = locations.first {
        print("Found user's location: \(location)")
    }
}

func locationManager(manager: CLLocationManager, didFailWithError error: NSError) {
    print("Failed to find user's location: \(error.localizedDescription)")
}

列表 在此处输入图像描述

请让我错过什么

4

1 回答 1

1

发现问题,我们正在使用webengage进行通知和事件跟踪,问题就在其中。

当我检查删除它时,代码工作正常。

我已经联系了webengage支持,他们已经解决了这个问题,所以

pod update

将解决此问题

于 2016-04-29T14:36:32.443 回答