AFNetworking - How to setup requests to be retried in the event of a timeout?
I have recently migrated from ASIHTTPRequest to AFNetworking, which has been great. However, the server that I am connecting with has some issues and sometimes causes my requests to timeout. When using ASIHTTPRequest it was possible to setup a retry count on a request in the event of a timeout using the following selector -setNumberOfTimesToRetryOnTimeout: This can be further referenced in this post, Can an ASIHTTPRequest be retried? This is AFNetworking if you are unfamiliar https://github.com/AFNetworking/AFNetworking#readme I was unable to find an equivalent api in AFNetworking, has anyone