zoukankan      html  css  js  c++  java
  • iOS UIwebView html 字符串转换

    解析json字段是一段html串,平常解析出来都能在uiwebview上正常显示,这却出现以下状况,文本内容夹杂好多不需要显示的字符,例如:
    NSString*string =@"<span>文本内容</span>";
    这就需要处理一下再显示。
    方法如下:

     html=[self htmlEntityDecode :[dict objectForKey:@"data"]];

    -(NSString*)htmlEntityDecode:(NSString*)string
        {
            string =[string stringByReplacingOccurrencesOfString:@""" withString:@"""];
            string =[string stringByReplacingOccurrencesOfString:@"'" withString:@"'"];
            string =[string stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
            string =[string stringByReplacingOccurrencesOfString:@"&lt;" withString:@"<"];
            string =[string stringByReplacingOccurrencesOfString:@"&gt;" withString:@">"];
           return string;
    }

    [webView_InformationloadHTMLString:html  baseURL:[NSURLURLWithString:@"http://www.maystall.com/"]];

    webView_Information.delegate=self;

    然后文本内容就正常显示了。

  • 相关阅读:
    4月21日Java作业
    5.14 Java作业
    第十周java作业
    4月30号作业
    第七周上机
    4.9Java
    通宵看剧有感
    error: pathspec 'xxxxxxxxx' did not match any file(s) known to git
    markdown格式测试
    博客申请通过啦
  • 原文地址:https://www.cnblogs.com/someonelikeyou/p/3578779.html
Copyright © 2011-2022 走看看