如何使用UIWebview加载LOCAL .html文件?

时间:2010-01-31 07:33:56

标签: iphone uiwebview nsdata

我正在尝试使用下面显示的方法加载本地存储在apps文档目录中的HTML文件。它不起作用。我做错了什么?

    NSLog(@"Loading Saved Copy!");
urlAddress = [[self documentsDirectory] stringByAppendingPathComponent:@"/Profile/profile.html"];


            //Create a URL object.
            NSURL *url = [NSURL URLWithString:urlAddress];
            //URL Requst Object
            NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
            //Load the request in the UIWebView.
            [webView loadRequest:requestObj];

1 个答案:

答案 0 :(得分:4)

改为使用+[NSURL fileURLWithPath:isDirectory:]