So i was trying yo create a simple auto scrolling view with iCarousel.
i made 4 view with image in the centre to be visible, using the
func carousel(carousel: iCarousel, viewForItemAtIndex index: Int, reusingView view: UIView?) -> UIView
and log the index view that are currently rendered,
i test it on ipod touch / iphone 5 / iphone 6, and every view get rendered as the log printed
current index rendered 0
current index rendered 3
current index rendered 2
current index rendered 1
but when i try it on iphone 6+, the log just print :
current index rendered 0
current index rendered 3
current index rendered 1
is it just the carousel? i doubt it.. thats why, what should i do to make the carousel rendered the 3rd view (2)?
because on func numberOfItemsInCarousel(carousel: iCarousel) -> Int
, i return the count of my image array.
thanks