我自己创建的uiwebview的缓存会保存多久, 可不可以自己控制。 |
|
用alloc自行创建的话
就不会被autorelease pool收掉 静态配置会加入autorelease pool 下载图片可以段代码 -(NData *)downloadHTTPFile:(NSString *) fileUrl{ return [NSData dataWithContentsOfURL:[NSURL URLWithString:fileUrl]]; } 把UIWebView中的图片url取出,然后再下载 |
|
感谢你的回答,但还是有些不明白的地方。
关于问题1, 关于问题2, 以上。 |
|
在帖子列表里居然找不到我的帖子,我自己顶。。。。
|
|
20分 |
我不清楚iphone是否有提供像windows的template file
您可以自行创建,将整个保存下来,只是很麻烦 如果有的话,基本上应该是都不用管,您的问题就解决了… 另外google了一下,看起来是有的….. |
As UIWebView is based on the URL Loading System it will interact which NSURLCache. You can subclass NSURLCache and overwrite
Code: – (NSCachedURLResponse *)cachedResponseForRequest:(NSURLRequest *)request The cache will get checked for any ressource as long as the cache policy allows it (should be the case per default). So you can check the request-url and return a “faked” response object (which returns data from your bundle). Never checked by assuming this should work. |
|
谢谢你回答,等我能在真机上测试的时候试一下。
|