I just tried going wider on Google, and found something that
might help. Look at the NSURLCache class here:
NSURLCache Class Reference.
I don't have first-hand experience with the issue you're having, but it seems like calling something like the following code before you fetch the data might work:
Code:
[[NSURLCache sharedURLCache] removeAllCachedResponses];
Please share your results.