webview加载本地html文件

将html文件加入工程,

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"html_test" ofType:@"html"];

    NSString *htmlString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

    [_webView loadHTMLString:htmlString baseURL:[NSURL URLWithString:filePath]];

加载后html内容可能并不是自适应屏幕宽度,可以通过调整html文件中的宽度配置:

例如:

 <table width="720" border="0" cellspacing="0" cellpadding="0">

可改成

 <table width="100%" border="0" cellspacing="0" cellpadding="0">






你可能感兴趣的:(webview加载本地html文件)