How can I make a synchronous request using the AFNetworking library. I've tried this link
https://github.com/paulmelnikow/AFNetworking-Synchronous/blob/master/AFHTTPClient%2BSynchronous.m
But it seems it isn't reliable. Sometime the request runs async using this approach.
Thanks in advance for your help.
H.
EDIT:
I've a bunch of operations that fetch data from the server, each operation fetches the data synchronously since the operation itself is already in background. How can I do this using AFNetworking?