Top "Nsurlconnection" questions

An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.

NSURLConnection methods no more available in IOS5

I was looking at the NSURLConnection class which could be used to establish a sync or async connection to an …

nsurlconnection ios5
Add NSURLConnection loading process on UIProgressView

I created a UIProgressView. But i used NSTimer to UIProgressView's process . Now I need to integrate UIProgressView process, when URL …

ios nsurlconnection uiprogressview
Determining Trust With NSURLConnection and NSURLProtectionSpace

I would like to ask a followup question to a previously posed question. I've got the code to create an …

iphone cocoa-touch ios certificate nsurlconnection
NSURLConnection leak?

i have set up a nsurl which grabs the data from http. when i run instrument, it says i have …

objective-c memory-management memory-leaks nsurlconnection nsurlrequest
NSMutableURLRequest "The request timed out" issue . .

I am trying to download data in my application by using the following code NSURL *url = [NSURL URLWithString:@"my download …

ios objective-c nsurlconnection nsmutableurlrequest nsurlconnectiondelegate
Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline."

When I try to connect to soundcloud using below code: // Create the request. NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://…

ios nsurlconnection soundcloud
Delayed UIImageView Rendering in UITableView

Ok, I've got a UITableView with custom UITableViewCells that each contain a UIImageView whose images are being downloaded asynchronously via …

iphone uiimageview uitableview nsurlconnection
Domain=NSURLErrorDomain Code=-1001 "The operation couldn’t be completed. (NSURLErrorDomain error -1001.)"

my program is write for upload the picture from the cam,sample code below: #define WEBSERVICE_URL @"http://192.168.0.104/upload.php" …

nsurlconnection afnetworking nsurlrequest nsurlsession xcode6-beta6
Does NSURLConnection take advantage of NSURLCache?

I'm trying to figure out how to use the URL loading framework to load URLs taking advantage of caching. I …

iphone nsurlconnection nsurlrequest
iOS dispatch_async and NSURLConnection delegate functions not being called

I've edited this post to make it simpler to read, I think. I need to call an NSUrlConnection after I've …

objective-c ios nsurlconnection nsrunloop