Problem z pamięcią podręczną NSURLRequest iOS 7

w iOS 7 cachePolicy nie działa, po prostu buforuje pobrany json.

//URLRequest
        NSString *url = [NSString stringWithFormat:@"http://www.semhora.com/jsonparser/categories/categories_%d_test.json", _categoriesIndex];
        NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:url]
                                                  cachePolicy:NSURLCacheStorageNotAllowed
                                          timeoutInterval:60.0];

Jak mogę zablokować pamięć podręczną w iOS 7?

questionAnswers(3)

yourAnswerToTheQuestion