简体   繁体   中英

can we open a PowerPoint file in an iPhone application?

I am developing an iPhone application where I want to open a PowerPoint file in my application. Can anyone please help me out?

使用-[UIWebView loadData:MIMEType:textEncodingName:baseURL:]

[webView loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:filePath]]

To my knowledge, the iPhone only currently reads Word and Excel documents. I don't think PowerPoint is supported. I tried it, and it wouldn't open the PowerPoint file. For a Word file, the iPhone actually has an arrow that you can tap, opening the document in another window.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM