Does AFNetworking cache images load automatically or do we have to do it manually?
I'm using AFNetworking to load images from JSON feed. In here, first time when user opens the app, images load from the internet. It's fine. But when user go back and come again from another view, while using the app, images should load from the cache, not from the internet. How can I do that? - (void)loadDetailData { detailPost = nil; NSString *detailUrl = [NSString stringWithFormat:@"%@", self.Details.firsturl]; AFHTTPRequestOperationManager *detailManager = [AFHTTPRequestOperationManager manager]; [detailManager GET:detailUrl parameters:nil success:^(AFHTTPRequestOperation *operation, id