如何分配他们有标签:
self.images = [NSMutableArray arrayWithObjects:
@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg",@"5.jpg",nil];
每当 UIScrollView 在特定图像处停止时,它都会做一些事情/动作/动画。例如,在显示图像 1 时在左侧绘制一个框,在 UIScrollView 中显示图像 2 时在右侧绘制一个框。谢谢。
这是数组:
- (void)awakeFromNib
{
if (self) {
//set up carousel data
//wrap YES = infinite loop
wrap = YES;
self.images = [NSMutableArray arrayWithObjects:
@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg",@"5.jpg"nil];
}
}
这是显示我的图像的位置:
- (UIView *)carousel:(iCarousel *)_carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
view = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[images objectAtIndex:index]]];
return view;
}