iCarousel以编程方式停在索引处

时间:2012-05-28 10:02:32

标签: iphone ios xcode ios5

无论如何,要使UIScrollView / iCarousel在特定部分或index或以编程方式停止: ([[images objectAtIndex:index] intValue] == 75)

以下是我如何滚动iCarousel:

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

1 个答案:

答案 0 :(得分:3)

您可以使用

滚动到特定索引
[carousel scrollToItemAtIndex:5 duration:10.0f];

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

([[images objectAtIndex:index] intValue] == 75)