首页 > Web开发 > 详细

解决 Json 中 Html 内容因为反编译带有"\"导致 WebView 无法直接加载问题(字符串的查找与替换)

时间:2016-03-04 18:58:46      阅读:399      评论:0      收藏:0      [点我收藏+]
NSString *path = [[NSBundle mainBundle] pathForResource:@"ad_type = 4" ofType:@"html"];
    NSString *htmlStr = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
    if (htmlStr != nil && [htmlStr rangeOfString:@"\\"].location != NSNotFound) {
        htmlStr = [htmlStr stringByReplacingOccurrencesOfString:@"\\" withString:@""];
    }

    UIWebView *web = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 50)];
    [web loadHTMLString:htmlStr baseURL:nil];
    [self.view addSubview:web];

 

解决 Json 中 Html 内容因为反编译带有"\"导致 WebView 无法直接加载问题(字符串的查找与替换)

原文:http://www.cnblogs.com/wzyking/p/5242980.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!