码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2016-03-04 18:58:48      阅读:219      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!