Vaibhav Khatri
Vaibhav Khatri

Reputation: 101

iOS framework/library for presenting Powerpoint slides?

I need a framework/library which can help me in to present the PPT slides with good animations?

Any ideas where i can find one?

Upvotes: 3

Views: 4189

Answers (2)

Ramaraj T
Ramaraj T

Reputation: 5230

You can use the document viewer. This works fine for all type of files.

http://developer.apple.com/library/ios/#samplecode/DocInteraction/Introduction/Intro.html

Upvotes: 1

dsgriffin
dsgriffin

Reputation: 68616

Quick Look Framework should be what you need - It is available in iOS 4.0 and later.

"Use the Quick Look framework to provide previews of items that are in formats you don’t handle—such as iWork or Microsoft Office."

A Quick Look preview controller can display previews for the following items:

  • iWork documents
  • Microsoft Office documents (Office ‘97 and newer)
  • Rich Text Format (RTF) documents
  • PDF files
  • Images
  • Text files whose uniform type identifier (UTI) conforms to the public.text type (see Uniform Type Identifiers Reference)
  • Comma-separated value (csv) files

Here is an example tutorial of Quick Look being used to display a PDF documents, not too dissimilar to what you'll need to do with your .ppt document.

Upvotes: 7

Related Questions