NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http:///];
NSURLRequest *req = [[NSURLRequest alloc]initWithURL:url];
NSURLConnection *con = [[NSURLConnection alloc]initWithRequest:req delegate:self startImmediately:YES];
In my project I used sendSynchronousRequest
on NSURLConnection
. It gives me crash sometimes.
So I convert this code to AsynchronousRequest
. I could not find suitable code.
Somebody give me link or post code which suitable to my code. Any hep will be appreciated.
Asynchronous request — Where the client continues execution after initiating the request and processes the result whenever the AppServer makes it available.
You can also send requests synchronously by calling WdfRequestSend, but you have to format the request first by following the rules that are described in Sending I/O Requests Asynchronously. Sending I/O requests to an I/O target synchronously is simpler to program than sending I/O requests asynchronously.
The Asynchronous Request-Response conversation involves the following participants: The Requestor initiates the conversation by sending a Request message amd waits for a Response message. The Provider waits for incoming Request messages and replies with Response messages.
Asynchronous APIs are also known as async APIs. With an asynchronous process, the availability of a resource, service or data store may not be immediate. The API may have to wait for a backend response. These APIs may provide a callback notification to the requester when the requested resource is ready.
There are couple of things you could do.
sendAsynchronousRequest
and handle the callback block.AFNetworking
library, which handles all your requests in asynchronous fashion. Very easy to use and set up.Code for option 1:
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if (error) {
//NSLog(@"Error,%@", [error localizedDescription]);
}
else {
//NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding]);
}
}];
Code for option 2:
You might want to download the library & include it in your project first. Then do the following. You can follow the post on setting up here
NSURL *url = [NSURL URLWithString:@"http://httpbin.org/ip"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSLog(@"IP Address: %@", [JSON valueForKeyPath:@"origin"]);
} failure:nil];
[operation start];
As an alternative to NSURLConnection
's now deprecated sendAsynchronousRequest:queue:completionHandler:
method, you could instead use NSURLSession
's dataTaskWithRequest:completionHandler:
method:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.example.com"]];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if (!error) {
// Option 1 (from answer above):
NSString *string = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
NSLog(@"%@", string);
// Option 2 (if getting JSON data)
NSError *jsonError = nil;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&jsonError];
NSLog(@"%@", dictionary);
}
else {
NSLog(@"Error: %@", [error localizedDescription]);
}
}];
[task resume];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With