0
與下一個方法我遇到一個問題的緩存同步連接
+ (NSString *)sendRequest:(NSMutableURLRequest *)request {
NSHTTPURLResponse *response;
NSError *error;
NSData *responseData;
[request setCachePolicy:NSURLRequestReturnCacheDataElseLoad];
responseData = [NSURLConnection sendSynchronousRequest:reqq returningResponse:&response error:&error];
//actions with responseData.
}
我注意到,數據不會緩存這個請求。緩存保持空白。有什麼辦法用同步連接緩存響應數據,還是應該重新設計我接收異步連接數據的方式?
感謝
[NSURLCache sharedURLCache]已經建立this博客。但看起來不是這是問題的原因 – NewObjective
您是否嘗試過didFinishLaunchingWithOptions中的代碼? – suhit
是的,它已經在didFinishLaunchingWithOptions中。 – NewObjective