Вызов LocationManager в функции IBAction

#swift #xcode #locationmanager

#swift #xcode #locationmanager

Вопрос:

Я работаю над погодным приложением и хочу, чтобы пользователь получал данные о погоде либо путем ввода местоположения, либо по текущему местоположению GPS.

Для определения местоположения GPS в интерфейсе есть кнопка, которую можно нажать. Одним нажатием кнопки я хочу вызвать функцию LocationManager, но она не работает. Как вы думаете, это что-то связано с областью действия?

Я просто помещаю функцию LocationManager в функцию IBAction кнопки. Это потому, что я не знаю, как вызвать LocationManager в IBAction.

введите описание изображения здесь

 class ViewController: UIViewController, CLLocationManagerDelegate {

    let key = "d79ac3fea08fac5d21deeabef00*****"
    var lat = 11.344533
    var lon = 104.33322
    let managLoc = CLLocationManager()

    @IBAction func locationOption(_ sender: Any, forEvent event: UIEvent) {
        func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
            let location = locations[0]
            lat = location.coordinate.latitude
            lon = location.coordinate.longitude
            Alamofire.request("https://api.openweathermap.org/data/2.5/weather?lat=(lat)amp;lon=(lon)amp;appid=(key)").responseJSON {
                response in
                if let responseStr = response.result.value {
                    let jsonResponse = JSON(responseStr)
                    let jsonWeather = jsonResponse["weather"].array![0]
                    let jsonTemp = jsonResponse["main"]
                    let iconName = jsonWeather["icon"].stringValue

                    self.locationLabel.text = jsonResponse["name"].stringValue
                    self.typeView.image = UIImage(named: iconName)
                    self.typeLabel.text = jsonWeather["main"].stringValue
                    self.tempLabel.text = "(Int(round(jsonTemp["temp"].doubleValue-273.15)))"

                    let date = Date()
                    let dateFormatter = DateFormatter()
                    dateFormatter.dateFormat = "EEEE"
                    self.dayLabel.text = dateFormatter.string(from: date)

                    }
            }
            self.managLoc.stopUpdatingLocation()
        }

        func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
            print(error.localizedDescription)
        }
    }
  

Ответ №1:

Выведите функции LocationManager из действия

 class ViewController: UIViewController, CLLocationManagerDelegate {

    let key = "d79ac3fea08fac5d21deeabef00*****"
    var lat = 11.344533
    var lon = 104.33322
    let managLoc = CLLocationManager()

    override func viewDidLoad() {
       super.viewDidLoad()
       managLoc.delegate = self
    }
    @IBAction func locationOption(_ sender: Any, forEvent event: UIEvent) {
       self.managLoc.startUpdatingLocation()
    }

    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        let location = locations[0]
        lat = location.coordinate.latitude
        lon = location.coordinate.longitude
        Alamofire.request("https://api.openweathermap.org/data/2.5/weather?lat=(lat)amp;lon=(lon)amp;appid=(key)").responseJSON {
            response in
            if let responseStr = response.result.value {
                let jsonResponse = JSON(responseStr)
                let jsonWeather = jsonResponse["weather"].array![0]
                let jsonTemp = jsonResponse["main"]
                let iconName = jsonWeather["icon"].stringValue

                self.locationLabel.text = jsonResponse["name"].stringValue
                self.typeView.image = UIImage(named: iconName)
                self.typeLabel.text = jsonWeather["main"].stringValue
                self.tempLabel.text = "(Int(round(jsonTemp["temp"].doubleValue-273.15)))"

                let date = Date()
                let dateFormatter = DateFormatter()
                dateFormatter.dateFormat = "EEEE"
                self.dayLabel.text = dateFormatter.string(from: date)

                }
        }
        self.managLoc.stopUpdatingLocation()
    }

    func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
        print(error.localizedDescription)
    }

}
  

Комментарии:

1. Попытка этого говорит: «Операция не может быть завершена. (Ошибка kCLErrorDomain 0.)»

2. Вы работаете в симуляторе / устройстве?

3. Я решил это, отредактировав схему (Product -> Scheme -> Edit Scheme … и выбрав местоположение по умолчанию). Большое тебе спасибо, чувак!