An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.
I've always used completion handlers. With NSURLConnection and now with NSURLSession. It's led to my code being really untidy, especially …
ios objective-c delegates nsurlconnection nsurlsessionI get this error when I try running the app on a device. I do not get this error when …
ios objective-c nsurlconnectionI need to set timeout 15sec or 30 sec with UIRequest, but it always takes default one. Is there any way …
iphone ios ipad nsurlconnection nsurlrequestDoes anyone knows if NSURLConnection/NSURLRequest have support for gzip requests. If does, can you provide more information?
cocoa cocoa-touch gzip nsurlconnection nsurlrequestI want to show up an progress bar while a download with NSURLConnection is happening. As I am getting data …
iphone progress-bar nsurlconnectionDoes anybody know how handlers (blocks) work in swift? I am trying to get this code running but i can't …
block nsurlconnection swiftI'm POST'ing a small image, so i'd like the timeout interval to be short. If the image doesn't send in …
nsurlconnection nsurlrequest nsmutableurlrequestIs it possible to download a file (i.e. an sqlite database file) from the Internet into your iPhone application …
ios cocoa-touch nsurlconnectionI need to check whether a URL (represented by a NSURL) is available or returns 404. What is the best way …
iphone nsurlconnectionI am trying to do something like this: NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://google.com"]]; request.HTTPMethod = @"POST"; …
ios post nsurlconnection swift