UIWebView加载本地网页与图片的方法

本文介绍如何使用UIWebView加载工程内的本地网页及图片资源,并通过JavaScript动态设置图片路径。

 
UIWebView加载工程本地网页与本地图片

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"];
    NSString *htmlString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
    
    myWebView = [[UIWebView alloc] initWithFrame:self.view.bounds];
    myWebView.delegate = self;
    [self.view addSubview:myWebView];
    
    [myWebView loadHTMLString:htmlString baseURL:[NSURL URLWithString:filePath]];
    
}

-(void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSString *imagePath = [[NSBundle mainBundle] resourcePath];
    imagePath = [imagePath stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
    imagePath = [imagePath stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
    NSString * js = [NSString stringWithFormat:@"document.images[0].src='file:/%@//%@'",imagePath,@"icon-04.png"];
    
    [myWebView stringByEvaluatingJavaScriptFromString:js];
    NSString *path = [myWebView stringByEvaluatingJavaScriptFromString:@"document.images[0].src"];
    NSLog(@"path:%@", path);
}


图片+文字是最好的说明,希望可以帮到忙。

图片:CD096BB8-D0C3-48AE-80C1-0CBCEB11C1D9.png 
 

转载于:https://www.cnblogs.com/Rong-Shengcom/p/5422052.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值