尝试将html文件加载到webview中,该文件包含链接到支持文件文件夹中其他页面的图像。加载主html文件,但图像和链接不起作用。有关如何解决这个问题的任何建议?我将我的img文件称为img src =“$#%。png”。
- (void)viewDidLoad {
[super viewDidLoad];
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"iphone"
ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile
encoding:NSUTF8StringEncoding error:nil];
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[myWebView loadHTMLString:htmlString baseURL:baseURL];
[myWebView loadHTMLString:htmlString baseURL:[[NSBundle mainBundle]
bundleURL]];
[myWebView loadHTMLString:htmlString baseURL:nil];
}
答案 0 :(得分:0)
使用此代码在html
中加载UIWebView
文件:
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"iphone" ofType:@"html"] isDirectory:NO]]];