一个方便的滚播图控件
#####去掉了一些重复的方法,简化接口的使用。 #####去掉dertroy方法和restart方法,简化使用,而且不用担心对象不能被正常释放。
可以使用传入本地图片和传入url的方式。传入url会将图片进行缓存。用的是sdWebimage,所以这个要有。
可以设置是否自动滑动,和滑动的时间间隔。如果设置了自动滑动,离开页面时要调用destroy函数来销毁定时器,在此进入时使用restart启动定时器。
self.carousel = [CXCarouselView initWithFrame:CGRectMake(0, 20, DeviceWidth , 200) hasTimer:YES interval:3 placeHolder:[UIImage imageNamed:@"loading"]];
[self.view addSubview:self.carousel];
NSArray *array = @[@"img1",@"img2",@"img3"];
[self.carousel setupWithArray:array];
##响应点击事件
self.carousel.delegate = self;
- (void) carouselTouch:(CXCarouselView*)carousel atIndex:(NSUInteger)index;