webView的使用

来源:互联网 发布:手机比价软件哪个好 编辑:程序博客网 时间:2024/05/19 09:49

 //加载隐私条例

    self.webView = [[UIWebViewalloc]initWithFrame:CGRectMake(0,0, kScreenWidth,kScreenHeight-64)];

    

    NSString *filepath = [[NSBundlemainBundle]pathForResource:@"index"ofType:@"html"];

    NSString *htmlString = [NSStringstringWithContentsOfFile:filepath encoding:NSUTF8StringEncodingerror:nil];

    [self.viewaddSubview:self.webView];

    NSURL *url = [NSURLURLWithString:filepath];

    [self.webViewloadHTMLString:htmlString baseURL:url];


0 0
原创粉丝点击