Im using NSURLSession which is preferred according to this thread. How to make an HTTP request in Swift?
let url = NSURL(string: "http://www.stackoverflow.com")
let task = NSURLSession.sharedSession().dataTaskWithURL(url!) {(data, response, error) in
println(NSString(data: data, encoding: NSUTF8StringEncoding))
}
task.resume()
My only problem is when user taps twice and I want to cancel the first request. I have tried task.cancel() but the print statement is still executed (namely right after .cancel() with NSDomainError). How do I safely cancel this request (NSURLSessionDataTask), without firing the print statement, or is it even possible?
EDIT: Just to be clear. The URL could be the same and I want to cancel the first request.
This is how I solved the problem. When task.cancel() is performed, the print statement wont be executed. Seems a little hacky to check against a string so if anyone has a better solution I will accept that one.