我正在尝试使用下面显示的方法加载本地存储在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];
答案 0 :(得分:4)
改为使用+[NSURL fileURLWithPath:isDirectory:]
。