// 提供的数据源 - 通常为网络请求到的数据
NSMutableArray *dataSource = [NSMutableArray array];
for (NSInteger i = 0; i < 9; i++) {
[dataSource addObject:[NSString stringWithFormat:@"显示一行 展示demo数据---%zd", i]];
}
// 创建 需提供 frame/数据源/展示的行数
CFCycleScrollView *cycleScrollView = [CFCycleScrollView cycleScrollViewWithFrame:CGRectMake(0, 230, CFScreenWidth, 66) dataSourceArray:self.dataSource showLabelCount:1];
// 水平方向 (不设置 默认竖直方向滚动)
cycleScrollView.scrollDirection = UICollectionViewScrollDirectionHorizontal;
[self.view addSubview:cycleScrollView];