项目介绍:
使用起来非常简单
1.导入头文件
#import "YLLoopScrollView.h"
2.调用类方法构造实例对象
// 传入轮播的时间(0 代表不启用定时器),需要轮播的自定义view,和需要重新赋值的model
YLLoopScrollView *scrollView = [YLLoopScrollView loopScrollViewWithTimer:2 customView:^NSDictionary *{
return @{@"YLCustomView" : @"model"};
}];
3.设置回调block
scrollView.clickedBlock = ^(NSInteger index) {
NSLog(@"index : %d", index);
};
4.设置数据源
// arr里存放的是自定义view的model
scrollView.dataSourceArr = arr;
5.设置frame
scrollView.frame = CGRectMake(0, 0, self.view.frame.size.width, 150);
6.添加到父视图
[self.view addSubview:scrollView];
github, 详情请点击查看