我试图在iOS的UIWebview中加载iFrame中的本地HTML文件

时间:2015-08-18 08:08:27

标签: html ios iframe uiwebview xcode6

我试图在iOS中加载iFrame中嵌入的本地HTML文件。我试图以默认的方式打开它,UIWebview显示一个空白页面。

   NSString *filePath = [dataPath stringByAppendingPathComponent:@"/index.html"];

     NSURL *pdfUrl = [NSURL fileURLWithPath:filePath];

     NSURLRequest *request = [NSURLRequest requestWithURL:pdfUrl
                                                 cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                             timeoutInterval:60];

     [_BookReaderWeb loadRequest:request];

如何在UIWebview中加载iframe?我们在iOS中有任何库可以在UIWebview中加载iframe吗?

0 个答案:

没有答案