I\'m using this code to pull a simple JSON feed from a server:
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.
Make long story short, just define your AFNetworking manager:
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
[manager.requestSerializer setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
Enjoy!
I don't feel good about it, but here is what works. In the AppDelegate didFinishLaunchingWithOptions:
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0
diskCapacity:0
diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];