Reputation: 91
Just like "ShowMe" app in apple store, users can paint and record the actions as a video. Do you guys know how to do that in code? Thanks!
Upvotes: 7
Views: 6397
Reputation: 22334
We recently had this question and found a fantastic article which uses the layer of your view and the media framework.
We modified it to use the presentation layer instead though instead of...
[self.layer renderInContext:context];
use...
[[self.layer presentatationLayer] renderInContext:context];
... this captures animation block transitions as well. Very neat.
Upvotes: 9