我有一个HTML文件保存在一个这样的临时目录:
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *documentDirectory = NSTemporaryDirectory();
NSString *documentPath = [documentDirectory stringByAppendingPathComponent:@"mydocument.html"];
[fileManager createFileAtPath:documentPath contents:myHTMLDocumentData attributes:nil];
该文件是在我的临时文件创建。 之后,我想在Safari中打开该文档,但它不工作:
NSURL *url = [NSURL fileURLWithPath:documentPath];
[[UIApplication sharedApplication] openURL:url];
没有什么发生在屏幕上,没有错误。不过,如果我取代“URL”通过@“http://google.fr”,Safari浏览器推出与google.fr,我可以通过键入URL来访问我的临时文件“文件://localhost..../myHtmlDocument.html”在Safari。
希望你能帮我