How can I load a local HTML file into the UIWebView?

前端 未结 7 939
有刺的猬
有刺的猬 2020-12-09 03:17

How can we load our own html file into the UIWebView?

7条回答
  •  無奈伤痛
    2020-12-09 03:29

    By using following code you can load an html in an WebView.here web is web view obj and inde

    Web.delegate = self;
    
    [Web loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:NO]]];
    

提交回复
热议问题