Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advise on how to implement image slideshow/carousel? ( iOS )

I've just started out with iOS development and I'm building an app to help myself learn faster.

I've gotten to the stage where I have all the basics of the app nailed down but now I just want to implement a slideshow at the top of my view controller like the one found in the National Parks app and many other apps too - http://wpuploads.appadvice.com/wp-content/uploads/2012/04/Nati2.jpg

Any advise or links to tutorials or explanations would be great. Thanks

like image 974
Dave Avatar asked Apr 02 '13 13:04

Dave


3 Answers

you have to download iCarousel code from github https://github.com/nicklockwood/iCarousel. you can download code from here.

like image 144
user2186457 Avatar answered Nov 16 '22 08:11

user2186457


I Hope this link will help u

http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content

Other simple way to achieve: Steps to achieve

  1. Add all the images in one scroll view.

  2. Enable paging for that scroll view.

  3. Based on the content offset of the scroll view highlight the appropriate dot(indicator in the bottom).

like image 8
Ganapathy Avatar answered Nov 16 '22 09:11

Ganapathy


You could also use a UICollectionView with horizontal scrolling.

like image 2
DevC Avatar answered Nov 16 '22 08:11

DevC