0

如何滚动特定项目或索引,例如:我NSInteger在另一个上设置一个UIView然后将它传递给我的iCarousel. 在我的另一个UIView中,我设置NSInteger如下:

[[NSUserDefaults standardUserDefaults] setInteger:button.tag
                                           forKey:@"integer"];

[[NSUserDefaults standardUserDefaults] synchronize];

滚动时我使用这个:

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

如何将整数传递给轮播,使其滚动然后将其停止到该特定项目或索引。

4

2 回答 2

2
- (void)scrollToItemAtIndex:(NSInteger)index animated:(BOOL)animated;`

在README中明确说明和描述。方法下的第一种方法

或者,如果您愿意:

- (void)scrollToItemAtIndex:(NSInteger)index 
                   duration:(NSTimeInterval)scrollDuration;`
于 2012-06-06T01:43:35.820 回答
0

in your ViewDidLoad method in your Viewcontroller....

- (void)viewDidLoad
{
    [super viewDidLoad];

    //configure carousel
    carousel.type=iCarouselTypeCylinder;
    carousel.autoscroll=0.4;
}
于 2015-02-02T15:04:11.463 回答