有没有办法让 iCarousel 中的图像暂停 iOS?

Is there a way to pause the images in iCarousel for iOS?

我目前在项目中使用iCarousel,我被要求将前面的每个图像暂停N秒,然后继续滚动(有自动滚动方法)。我尝试使用双定时器,尝试更改图像,但没有成功。

这是我想出的:

var activeItemIndex = 0
Timer.scheduledTimer(withTimeInterval: 5, repeats: true) { timer in
    activeItemIndex += 1
    if activeItemIndex == carousel.numberOfItems {
        activeItemIndex = 0
    }
    carousel.scrollToItem(at: activeItemIndex, duration: 3)
}