使用UIWebView加载来自NetWork、Project、Documents的html、javascript文件


话不多少,直接上代码,思路还是挺简单的。


    UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame];
    
    // HTML文件来自Project
    // 步骤:path - > url - > request with url - > loadRequest
    NSString *path_Proj = [[NSBundle mainBundle]pathForResource:@"index" ofType:@"html"];
    NSURL *url_Proj = [NSURL fileURLWithPath:path_Proj];
    NSURLRequest *request_local = [NSURLRequest requestWithURL:url_Proj];
    [webView loadRequest:request_local];
    
    // HTML文件来自Documents
    // 步骤:pathArrary - > path - > url - > request with url - > loadRequest
    NSArray *pathArrary = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [pathArrary objectAtIndex:0];
    NSString *path_Doc = [documentsDirectory stringByAppendingPathComponent:@"index.html"];
    NSURL *url_Doc = [NSURL fileURLWithPath:path_Doc];
    NSURLRequest *request_Doc = [NSURLRequest requestWithURL:url_Doc];
    [webView loadRequest:request_Doc];
    
    // HTML文件来自Network
    // 步骤:url - > request with url - > loadRequest
    NSURL *url_net = [NSURL URLWithString:@"http://文件地址/index.html"];
    NSURLRequest *request_net = [NSURLRequest requestWithURL:url_net];
    [webView loadRequest:request_net];


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值