I'm new with AFNetworking so I've never faced this problem before with NSURLConnection
I'm using this method after a post request to add category
-(void)getCategories{
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
NSString * url = [NSString stringWithFormat:@"%@v2/api/tags",kURL];
NSDictionary *parameters =[self parameterBuild];
[manager GET:url parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {
categories = [[NSMutableArray alloc]init];
categories = [responseObject objectForKey:@"tags"];
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
}];
}
And the problem is.. responseObject is always getting the old data for a while as if it's caching or something..
any help will be appreciated
The problem comes, because you're not cleaning up the data and reloading view on error.