12

In my application i need to launch ppt , xls, pdf files. i am sure, iOS Framework support to view PDF files without launching any other application, but is there any way to open ppt , xls doc , if yes please give me any pointer,

I believe, there should be some SDKs available , which can be integrated through an application and can make use of it.

Hailei
  • 42,163
  • 6
  • 44
  • 69
Amitg2k12
  • 3,765
  • 10
  • 48
  • 97

1 Answers1

21

If you just want to view the Office files, have a look at:

Quick Look Framework supports a lot of file formats as you can see in the links above. It is available in iOS 4.0 and later.

You can also use UIWebView to display them. See Using UIWebView to display select document types.

Hailei
  • 42,163
  • 6
  • 44
  • 69
  • 3
    i show PPT file in UIWebview but its won't show any animations. how to make animation and sounds in iphone web view – Gurumoorthy Arumugam Sep 12 '12 at 08:39
  • `WKWebView` supersedes `UIWebView` and also supports displaying Microsoft Office files. See my [StackOverflow answer](https://stackoverflow.com/a/46334049) for more details. – user2067021 Sep 21 '17 at 02:47