How to display the contents of MS Office 2007/2010 files on iPad?

How can we display the contents of MS Office 2007/2010 files (especially .docx) in iOS 3.2 (ipad)?

+3
source share
1 answer

using this piece of code:

NSString *path = [[NSBundle mainBundle] pathForResource:resourcePath ofType:nil];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];

Ironically, I found that UIWebView is able to view these types, but only physically on the iPad, it will not view files in the simulator.

+4
source

Source: https://habr.com/ru/post/1762531/


All Articles