политика кэширования не работает с php webservice IOS SDK

я использовал сторонний API для ответа JSON, и я также использовал cachePolicy:NSURLRequestReturnCacheDataElseLoad для быстрого ответа, но теперь мы разработали наш собственный API, но сейчас cachePolicy:NSURLRequestReturnCacheDataElseLoad не работает, я имею в виду, что это не кеширование данных

NSString *urlAsString = @"api url";

NSString* webStringURL = [urlAsString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL* url = [NSURL URLWithString:webStringURL];

NSURLRequest *urlRequest =
[NSURLRequest
requestWithURL:url
cachePolicy:NSURLRequestReturnCacheDataElseLoad
timeoutInterval:30.0f];

NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection
sendAsynchronousRequest:urlRequest
queue:queue
completionHandler:^(NSURLResponse *response,
NSData *data,
NSError *error) {
if ([data length] >0 && error == nil){

NSMutableArray *arrayResponse=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];

[self prepareData:arrayResponse];



}
else if ([data length] == 0 && error == nil){
dispatch_async(dispatch_get_main_queue(), ^{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@"The server is not responding \n please check your internet connection" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
alert=nil;
});
NSLog(@"Nothing was downloaded.");
}
else if (error != nil){

dispatch_async(dispatch_get_main_queue(), ^{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@"The server is not responding \n please check your internet connection" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
alert=nil;
});
NSLog(@"Error happened = %@", error);
}
}];

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]