Reputation: 1120
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
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