Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ken Burns effect on iPhone views

are there any exisiting approaches on how to apply Ken Burns slideshow effects (take a look at a javascript demo: slideshow demo site) to a view?

Regards...

like image 299
Stefan Avatar asked Nov 24 '25 22:11

Stefan


1 Answers

The basic concept is to set up the change you want applied to you view and then commit the animation.

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationDuration:5];
[UIView setAnimationTransition: ...zoom, pan, whatever... cache:YES];

[UIView commitAnimations];

Cheers, niels

like image 165
Niels Castle Avatar answered Nov 26 '25 18:11

Niels Castle