Closed podiyaaa closed 8 years ago
Ah, I see that I did not update the documentation after the previous change of Alamofire. I will do that in a moment. Instead of returning a response and an error, Alamofire will now return a result. This is now how a cal will look like:
Alamofire.request(.GET, URL)
.responseObject { (response: Result<Feed, NSError>) in
if let result = response.value {
// Now use your Result
}
}
okay.. i will see and let you know ... thank you :+1:
Hi, im getting this error .....