0

有没有办法让 UIScrollView/iCarousel 在特定部分停止,index或者像这里一样以编程方式: ([[images objectAtIndex:index] intValue] == 75)

这是我滚动 iCarousel 的方式:

[carousel scrollByNumberOfItems:-35 duration:10.7550f];

4

1 回答 1

3

您可以使用滚动到特定索引

[carousel scrollToItemAtIndex:5 duration:10.0f];

我不是 100% 确定我理解你想要做什么 - 你的示例代码没有任何意义,因为在这段代码中你试图将图像转换为整数,这只会崩溃:

([[images objectAtIndex:index] intValue] == 75)
于 2012-05-28T10:20:57.440 回答