AFNetworkingのキャッシュはNSURLCacheに残っているみたいです。
NSInteger diskCapacity = [NSURLCache sharedURLCache].diskCapacity;
NSInteger memoryCapacity = [NSURLCache sharedURLCache].memoryCapacity;
/* 0にする */
[NSURLCache sharedURLCache].diskCapacity = 0;
[NSURLCache sharedURLCache].memoryCapacity = 0;
/* もとの大きさに戻す */
[NSURLCache sharedURLCache].diskCapacity = diskCapacity;
[NSURLCache sharedURLCache].memoryCapacity = memoryCapacity;
ちなみに、
[[NSURLCache sharedURLCache] removeAllCachedResponses]
ではキャッシュが消えなかったので、調べてみたら、他にもキャッシュが消えなかった人がいました。
http://stackoverflow.com/questions/8737132/how-to-clear-cache-and-cookies-in-iphone