Top "Nsurlconnection" questions

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

Bypass kCFStreamErrorDomainSSL error for self-signed certificates on iOS 7

I am trying to load a HTTPS web page, which has a self-signed certificate, in to an UIWebView. Using tips …

ios7 https nsurlconnection ssl-certificate
How to download a large file with the iPhone SDK and avoid memory usage issues?

I'm using the NSURLConnection class to download a large file in my iPhone application, but it crashes every so often …

iphone memory-management nsurlconnection
Asynchronous request example

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http:///]; NSURLRequest *req = [[NSURLRequest alloc]initWithURL:url]; NSURLConnection *con = [[NSURLConnection alloc]initWithRequest:req delegate:…

objective-c nsurlconnection
OAuth 2 bearer Authorization header

With an update to the client's API the HTTPBasicAuthication method has been replace with a OAuth2 Bearer Authorization header. With …

ios nsurlconnection oauth-2.0 nsurlrequest
Handling a NSURLRequest with timeout when using delegate

I'm using a NSMutableURLRequest to connect to a web site to get a JSON response. I'm doing so by generating …

iphone timeout nsurlconnection nsurlrequest
Is there any way to attach a NSDictionary of parameters to an NSURLRequest instead of manually making a string?

AFNetworking allows you to add an NSDictionary of parameters to a request, and it will append them to the request. …

ios objective-c nsurlconnection nsurlrequest nsurlsession
Reading data from response header of NSURLConnection

How can I read the data from the header sent by in the server response. I am using NSURLConnection to …

iphone objective-c cocoa-touch nsurlconnection
Error message : [MC] Reading from public effective user settings & [MC] System group container for systemgroup.com.apple.configurationprofiles path is

When I use the following code, I have error messages : [NSURLConnection sendAsynchronousRequest:request queue:myQueue completionHandler:^(NSURLResponse *response, NSData *data, …

ios objective-c xcode nsurlconnection sendasynchronousrequest
Asynchronous NSURLConnection with NSOperation

I want to do NSURLConnection in background mode,because it response is having much data.Forums are telling to use …

objective-c ios nsurlconnection nsoperation nsinvocation
setKeepAliveTimeout and BackgroundTasks

I've a big headache with the topic. I'm working on an application that needs to poll a webserver regularly, in …

iphone objective-c nsurlconnection nsthread objective-c-blocks