给出错误索引的iCarousel carouselCurrentItemIndexDidChange方法

时间:2017-02-09 12:29:45

标签: ios objective-c nsmutablearray icarousel

我正在使用iCarousel在旋转流中显示图像。 我叫这个方法:

-(void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel 

用于在滑动期间更改图像。 现在,最初当我来到我的视图控制器时,这个方法被调用,它给了我 -1当前索引而不是0 (and because of this app crash with beyond bounds for empty array)。 任何人都可以帮助我!

1 个答案:

答案 0 :(得分:0)

试试这个

Swift 3.0

  func carouselCurrentItemIndexDidChange(_ carousel: iCarousel) {
        print(carousel.currentItemIndex)
  }

<强>的ObjectiveC

-(void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel {
       NSLog(@"%d",carousel.currentItemIndex)
}