Due to some major issues with caching in the UIWebView, I'm requesting an HTML page myself and loading it into the web view using the following method:
-(void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType
textEncodingName:(NSString *)encodingName baseURL:(NSURL *)baseURL
Previously, I've been setting thebaseURL to nil since all resources were defined with absolute URLs. I found 1 relative link, and rather than try to guarantee that all resources in the future have absolute paths, I thought it would be better to specify base URL. When I try doing that, the web view loads the base URL instead of the NSData.
There isn't much in Apple's documentation for base URL. What's the expected behavior here?
<img src="" />). I couldn't find any of those issues in this case. I solved my problem by adding the<base href="{url}"></base>tag to the head after page load by injecting JS. This only works because all page resources on load use absolute paths, not relative ones. – goldierox Aug 17 '11 at 21:08baseURL:is unfortunately not the same as the HTML base tag. I thinkbaseURL:simply means "assume this string came from a file calledbaseURL". It took me 2 hours of debugging today to reach that conclusion. It seems like @goldierox has the right idea of having to use bothbaseURLand<base>. – sblom Mar 6 '12 at 23:00