如何实施循环iCarosel?

时间:2014-11-20 13:16:16

标签: ios objective-c iphone xcode menu

  

我通过设置相应的值来尝试所有方法,但我无法做到   通过使用iCaurosel获得低于1,或者是否有任何控制器提供相同的功能   ?你能救我吗?

enter image description here

4 个答案:

答案 0 :(得分:0)

你应该选择iCarousel类型来转动:

self.carousel.type = iCarouselTypeWheel;

但如果您指的是物品保证金,则无法做到这一点:

https://github.com/nicklockwood/iCarousel/issues/306

答案 1 :(得分:0)

请检查以下样本。这是你可以添加的动态圆圈(视图)。:)

https://github.com/mpospese/CircleLayout

快乐的编码。

答案 2 :(得分:0)

您可以通过创建自定义循环UICollectionView布局来实现相同的功能。请访问以下链接以解决此问题。

http://developer.xamarin.com/guides/ios/user_interface/introduction_to_collection_views/

答案 3 :(得分:0)

您可以使用carousel.type = iCarouselTypeWheel执行此操作,然后使用carousel:valueForOption:withDefault:委托方法调整圆半径,显示的项目数等。

要将圆圈定位在偏离中心位置,请使用carousel.contentOffset

您可能会发现手势处理有点奇怪,因为即使视图显示为圆形,平移手势仍然是线性的。