Независимо от того, если запрос get с Alamofire завершается неудачно или успешно, он просто не обновляет элементы пользовательского интерфейса. У вас есть идеи?
func sendRequest(button: Int) {
var url : URL!
url = URL(string:"http:/www.google.de")
Alamofire.request(url, method: .get).responseString {
response in
switch response.result {
case .failure:
print("Failed") // this is dumped
self.label.setText("Failed") // no effect
case .success:
print("Success") // this is dumped
self.label.setText("Success") // no effect
}
}
}