我正在使用iCarousel
在旋转流中显示图像。
我叫这个方法:
-(void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel
用于在滑动期间更改图像。
现在,最初当我来到我的视图控制器时,这个方法被调用,它给了我 -1当前索引而不是0 。 (and because of this app crash with beyond bounds for empty array)
。
任何人都可以帮助我!
答案 0 :(得分:0)
试试这个
Swift 3.0
func carouselCurrentItemIndexDidChange(_ carousel: iCarousel) {
print(carousel.currentItemIndex)
}
<强>的ObjectiveC 强>
-(void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel {
NSLog(@"%d",carousel.currentItemIndex)
}