加载本地Html

来源:互联网 发布:服务器虚拟化软件 编辑:程序博客网 时间:2024/05/20 12:24

  1.  NSString *basePath = [[NSBundlemainBundle]bundlePath];

       NSString *relPath = [basePathstringByAppendingPathComponent:@"AAAA/index.html"];

       NSString *myText = [NSStringstringWithContentsOfFile:relPathencoding:NSUTF8StringEncodingerror:nil];

       UIWebView *web = [[UIWebViewalloc]initWithFrame:CGRectMake(0,0,320,self.view.frame.size.height)];

       [web loadHTMLString:myTextbaseURL:[NSURLfileURLWithPath:relPath]];

[self.view addSubview:web];

2. NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"];

     NSURL *url = [NSURL fileURLWithPath:filePath];

     NSURLRequest *request = [NSURLRequest requestWithURL:url];

     [myWebView loadRequest:request];

[self.view addSubview:web];


原创粉丝点击