ASIHTTP リクエストを使用して Web html ページにアクセスしました。
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:requestURL]];
[request setTag:selectTag];
[request setDownloadCache:[ASIDownloadCache sharedCache]];
[request setCachePolicy:ASIAskServerIfModifiedCachePolicy | ASIFallbackToCacheIfLoadFailsCachePolicy];
[request setCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy];
[request setDelegate:self];
[request startAsynchronous];
ViewController から別の ViewController に移動した場合。
「requestFinished」がまだトリガーされていない場合、この非同期 http 要求をキャンセルすることは可能ですか?
コメント歓迎