Mustafa Ibrahim
Mustafa Ibrahim

Reputation: 1120

is there is a way to generate, create or export a .ppt presentation on iOS using C or C++ library

I have a UIView contains subviews which appear with animation, how can i generate a .ppt or .keynote presentation with this UIView included the subviews animation.

Thank You

Upvotes: 3

Views: 367

Answers (1)

Rafał Sroka
Rafał Sroka

Reputation: 40028

I don't think it is possible. Closest you can get would be examining the Open Document Format and trying to create a tool that creates ODF documents. They can be exported to PPT. However, there is no out-of-the-box solution you can use. You would need to write it.

You can have a look at this project that allow programmatic creation, scanning and manipulation of ODF documents: http://wiki.apache.org/incubator/ODFToolkitProposal

It's in Java but should give you an idea.

Upvotes: 1

Related Questions