iOS 对H5加载html的数据的一些基础设置
Posted 我叫小小虎
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 对H5加载html的数据的一些基础设置相关的知识,希望对你有一定的参考价值。
NSString *title = [NSString stringWithFormat:@"<p><font color=\"black\" size=\"4\"><strong>%@</strong></font> </p>",_webTitle]; //设置webView 标题打大小和颜色 以及加粗
NSString *title = [NSString stringWithFormat:@"<p><font color=\"black\" size=\"3\">%@</font> </p>",_webTitle]; //设置webView 标题打大小和颜色
NSString *dataa = [NSString stringWithFormat:@"<style>img{max-width:320px}</style>%@",data]; //让h5 图片宽度 = 320
NSString *time = [NSString stringWithFormat:@"<p><font color=\"gray\" size=\"2\">%@</font> </p>",_time];
如果后台返回的是html的数据 不是url
NSString *filePath = [NSString stringWithFormat:@"%@\n%@\n%@",title,time,dataa];
financeWeb = [[UIWebView alloc] initWithFrame:CGRectMake(0,0, kUIScreenWidth, kUIScreenHeight-64)];
financeWeb.delegate = self;
[financeWeb.scrollView setBounces:YES];
financeWeb.backgroundColor = [UIColor whiteColor];
[self.view addSubview:financeWeb];
[financeWeb loadHTMLString:filePath baseURL:nil];
以上是关于iOS 对H5加载html的数据的一些基础设置的主要内容,如果未能解决你的问题,请参考以下文章
基于vue,移动端h5如何和androidiOS客户端进行交互