如何将html文件本地加载到uiwebview中

时间:2010-09-15 13:56:47

标签: iphone objective-c cocoa-touch xcode

我遇到了如何让uiwebview加载本地html文件的问题。提供鳕鱼e以及我将hmtl文件作为fp_dis-1.html。 提前谢谢

1 个答案:

答案 0 :(得分:4)

试试这个,

UIWebView *page;

[page loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"your-local-file-url" ofType:@"html"]isDirectory:NO]]];