无法使用UIWebView加载大型powerpoint文件(~100MB)

时间:2016-06-07 06:42:19

标签: ios xcode uiwebview powerpoint wkwebview

我使用UIWebView打开pptx文件(~110MB),但我的大部分设备都无法加载文件。我认为这是内存不足的问题。

self.contentWebView = [[UIWebView alloc] initWithFrame:self.view.bounds];
self.contentWebView.delegate = self;
self.contentWebView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
self.contentWebView.backgroundColor = [UIColor clearColor];
self.contentWebView.scalesPageToFit = YES; // to fit the content into the webview
[self.view addSubview:self.contentWebView];
self.filename = Path;
[self.contentWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:Path]]];

有没有办法解决这个问题?

编辑:

我已经尝试过WKWebView,但问题仍然存在。

1 个答案:

答案 0 :(得分:0)

如何使用WKWebView而不是UIWebView