0
我是iOS新手。我想在不同的按鈕操作中傳遞不同的圖像數組。我想重裝iCarousel在每一個按鈕動作如何將圖像數組傳遞給icarousel?如何重新加載圖像陣列數據重新加載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這樣。
在此先感謝..