就使用這樣的
NSURL *url = [NSURL URLWithString:kURL];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL : url
cachePolicy : NSURLRequestReloadIgnoringCacheData
timeoutInterval : 30];
NSString *params = [NSString stringWithFormat:@"param=%d",digits];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *taxiData, NSError *error) {
//Snippet - Do sth. (block)
}
希望這有助於。
編輯:對不起,我沒有清楚地閱讀你的問題。 + sendAsynchronousRequest不需要委託方法。
EDIT2:或者,也許,this將幫助你
我認爲,高速緩存策略取決於您如何設置您的網址request.Are你問這個? –