문제

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

도움이 되었습니까?

해결책

using this code snippet :

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 the UIWebView is capable of viewing these types but only on the iPad physically, it will not view the files in the simulator.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top