thomasdao
thomasdao

Reputation: 982

Slide show and animation iOS

Slide show

I need to create a slideshow as above. There are 5 screens from left to right in the picture above 1) In the first screen: All picture is tilted 2) When I swipe, the first picture moving along with my finger and finally move to the back of the queue. The second picture comes up.

Can anyone give me some source to read and practice to do these tasks?

EDIT: For those who choose to use iCarousel and need to add an action when user tap to an image which is currently chosen: Add the following to your ViewController. - (void)carousel:(iCarousel *)carousel didSelectItemAtIndex:(NSInteger)index { if( index == carousel.currentItemIndex ) { //Define your action here } } Hope it helps someone!

Upvotes: 1

Views: 1028

Answers (1)

Fredrik
Fredrik

Reputation: 1302

Here's a good start, iCarousel > https://github.com/nicklockwood/iCarousel

Upvotes: 1

Related Questions