Reputation: 4289
How can I solve the issue of overlapping by bigger images in iPad while implementing iCarousel animation?
Upvotes: 0
Views: 570
Reputation: 2146
Add this protocol to your class <iCarouselDeprecated>
Then implement
- (CGFloat)carouselItemWidth:(iCarousel *)carousel
{
return 200.0;
}
Upvotes: 0
Reputation: 5267
You can change the below property.
iCarouselTranformOptionRadius
The radius of the Rotary, Cylinder and Wheel transforms in pixels/points. This is usually calculated so that the number of items (count) exactly fits into the specified arc. You can manipulate this value to increase or reduce the item spacing (and the radius of the circle).
For more reference just read the read-me file here
Upvotes: 1
Reputation: 42598
Just as a wild guess, have you tried setting -setClipsToBounds:
to YES
on the UIImageViews in the carousel?
Upvotes: 0