Skip to content

An iOS category adding retry functionality to requests made using AFNetworking 2

License

Notifications You must be signed in to change notification settings

shaioz/AFNetworking-AutoRetry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2106ef2 · Jan 4, 2017

History

35 Commits
Jul 7, 2014
Jul 7, 2014
Jan 26, 2016
Jan 4, 2017
Jan 26, 2016
Jan 4, 2017
Jan 26, 2016
Jan 21, 2014
May 10, 2014
May 9, 2014
Jan 26, 2016

Repository files navigation

AFNetworking-AutoRetry

An iOS category adding retry functionality to requests made using AFNetworking 2

Installation with CocoaPods

CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like AFNetworking in your projects. See the "Getting Started" guide for more information. You can install it with the following command:

$ gem install cocoapods

To integrate AFNetworking-AutoRetry into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'AFNetworking+AutoRetry'

Then, run the following command:

pod install

Usage

Import the libraries at the top of your .m file

#import <AFNetworking/AFHTTPRequestOperationManager.h>
#import <AFNetworking+AutoRetry/AFHTTPRequestOperationManager+AutoRetry.h>

Then, in your function:

// setup POST data
NSDictionary *parameters = @{@"key":@"value"};
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
// set the network timeout duration to 30 seconds
manager.requestSerializer = [[AFHTTPRequestSerializerWithTimeout alloc] initWithTimeout:30];
[manager POST:@"http://www.example.com/api" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {
    // success, parse the response here
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    // failure, e.g. network error
} autoRetry:3];

where 3 is the number of retries. Similar for GET cases.

##Communication If you encounter any questions or issues, please use the tag afnetworking-autoretry to ask in Stack Overflow. If you think you found a bug, please report it at Issues.

##Credits AFNetworking is owned and maintained by the Alamofire Software Foundation. AFNetworking-AutoRetry is created by Shai Ohev Zion and now maintained by Shivan Raptor and Daniel Jankovič.

About

An iOS category adding retry functionality to requests made using AFNetworking 2

Resources

License

Stars

Watchers

Forks

Packages

No packages published