Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have set images in iCarousel. When I scroll the carousel, it shows images in front and back. I do not want to display images in back. Please help. Thank you.

share|improve this question
have u used sample code of iCarousael then it also provide different switch type from that u can change the type which will not shows image in background – aakil ladhani Feb 21 '12 at 12:44
please explain more thoroughly.. – DJPlayer Feb 21 '12 at 12:54

2 Answers

up vote 1 down vote accepted

You'll need to change to a custom carousel type, and copy the implementation of iCarouselTypeRotary in your delegate. Then implement -carousel:itemAlphaForOffset: so that items around the back have an alpha of zero.

share|improve this answer
Thanks. My problem is solved. – iPhone Developer Feb 22 '12 at 13:36
Great to hear. If my answer helped, please could you click the tick mark to mark this as the correct answer? – Simon Feb 22 '12 at 13:44

In the latest version of iCarousel, the easiest way to do this is to set view.layer.doubleSided = NO on your carousel item views.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.