Reputation: 3991
I'm looking for splitting a view into multiple strips then animate each strip independently like moving them from left to right until they go offscreen, with a little delay between each animation.
Do methods exist to split a view or a layer into subviews/sublayers ?
Upvotes: 1
Views: 1001
Reputation: 119031
There is no standard method.
You should start off with code to generate an image from the view. Then, instead of a single image draw each half into separate images. Now you can use these 2 images for your animations.
Upvotes: 1