Я пытаюсь получить доступ к данным о местоположении, из этого получить название города и затем присвоить его переменной, чтобы я мог использовать его в другом месте.Она печатает переменную изнутри замыкания, но ее ноль, когда я пытаюсь получить к ней доступ через переменную класса, которую я создал, код ниже, спасибо.
class NewPostViewController: BaseViewController {
@IBOutlet weak var postBodyTextField: UITextField!
var city: String?
@IBAction func createPostAction(_ sender: Any) {
getCity()
db.collection("posts").document().setData([
"body": postBodyTextField.text,
"location": city,
"user": user?.displayName
]) { err in
if let err = err {
print("Error writing document: \(err)")
} else {
print("Document successfully written!")
}
}
}
override func viewDidLoad() {
super.viewDidLoad()
}
func getCity() {
Locator.currentPosition(accuracy: .city, onSuccess: { location in
let geocoder: CLGeocoder = CLGeocoder()
geocoder.reverseGeocodeLocation(location, completionHandler: { location, error in
if let location = location {
self.city = location[0].locality
}
})
}, onFail: {_,_ in
print("Error, couldnt get current location")
})
}
}