我是 iOS 新手。我想在不同的按钮操作中传递不同的图像数组。我想在每个按钮操作中重新加载 iCarousel
这是我的代码
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index
{
UIView *view = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[NSString stringWithFormat:@"%d.jpg",index]]];
view.tag=index;
view.frame = CGRectMake(70, 80, 180, 260);
return view;
}
目前我正在像这样将图像传递给icarousel。
提前致谢..