I am calling a web service Synchronously using AFNetowrking. For example i am uploading some data to server and while uploading the wifi is out. How would i know that wifi is unavailable and cancel the request?
Wifi unavailable during Network request
74 Views Asked by Hassy At
2
There are 2 best solutions below
0

What about retrying request until WiFi if alive again?
Try this cocoapod: https://github.com/shaioz/AFNetworking-AutoRetry
I don't know that you have used Reachability class or not. But if not used than it is given in below Apple sample code.
Reachability Introduction
Include these class in your project. Now with the help of
AppDelegate.m
file you can track availability of network.Add notification observer in
didFinishLaunchingWithOptions:
method. This will notify on network changes.The notification method will call when there is any change in host connectivity or network connectivity.
Cancel
NSURLConnection
request when you lost connectivity.To cancel on going request use
- (void)cancel;
method ofNSURLConnection
.