0

在我的代码中,我需要初始化我的用户位置:它工作正常。

但是,每当我想更改我的位置(通过选择地址或扫过屏幕)时,我的应用程序都会将我带回到我的用户位置。

我在那篇帖子上找到了一些答案。但是,我不打电话didUpdateUserLocation()。所以我不知道该怎么办。

我的应用程序是否经常调用ViewDidLoad()

这是我的代码,我在其中初始化我的位置。

var usrLocation: CLLocationManager!

override func viewDidLoad() {
    super.viewDidLoad()
    if (CLLocationManager.locationServicesEnabled()) {
        usrLocation = CLLocationManager()
        usrLocation.delegate = self
        usrLocation.requestAlwaysAuthorization()
        usrLocation.requestLocation()
        usrLocation.startUpdatingLocation()
    }
    mapView.delegate = self
}

此外,我不能只删除我的usrLocation.requestLocation()功能,我需要在应用程序启动时以我的用户为中心。我想在别处调用它,但我不知道在哪里?

4

2 回答 2

1

你已经实现
了 usrLocation.startUpdatingLocation()

这是不断更新位置,因此一旦您指向另一个位置,它就会更新用户位置。

删除此行代码将起作用。

于 2016-08-04T07:58:14.720 回答
0

所以,正如丹所说,问题是我不应该打电话requestLocation()startUpdatingLocation().

所以现在我的代码就是这样,它完美地工作:

var usrLocation: CLLocationManager!

override func viewDidLoad() {
    super.viewDidLoad()
    if (CLLocationManager.locationServicesEnabled()) {
        usrLocation = CLLocationManager()
        usrLocation.delegate = self
        usrLocation.requestAlwaysAuthorization()
        usrLocation.requestLocation()
    }
    mapView.delegate = self
}
于 2016-08-04T07:41:28.917 回答