似乎无法找到这个bug。我有一些内容进入我的应用程序,并将一些图像指向iPad上的本地文档目录。我们总是得到一个?在webview中。
以下是具体细节:
基本网址解析为:
file://localhost/Users/robbonner/Library/Application%20Support/iPhone%20Simulator/4.3/Applications/9756C6A5-2263-44DD-8AEC-10BA1890305B/Documents/
我的HTML看起来像:
<img class="alignright size-full wp-image-318" title="6" src="5/http##episcopalchurch.org#blogs#TellartCMS#wordpress#wp-content#uploads#2011#05#6.png" alt="" width="201" height="113" />
该文件确实在我的文档目录中(Documents / 5 / -FILES HERE -
对UIWebView的调用如下:
NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSURL *bURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@", docPath]];
[w loadHTMLString:newContent baseURL:bURL];
我的目录结构是这样的:
我很确定这只是一个位置问题,但我尝试了很多很多不同的组合而没有运气。
提前致谢!