【发布时间】:2011-03-26 13:50:14
【问题描述】:
我在viewDidLoad中有以下代码
NSURL *url = [NSURL URLWithString:URL_TO_DOWNLOAD];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request startAsynchronous];
[request setCacheStoragePolicy:ASICachePermanentlyCacheStoragePolicy];
完成后,我想查看在我的UIWebView 中下载的 URL (PDF)。我以编程方式创建了一个UIWebView,但是我无法找到loadRequest 我的实际ASIHTTP 请求的方法。
【问题讨论】:
标签: iphone uiwebview webview asihttprequest