XLCycleCollectionView
May 26, 2017 · View on GitHub
利用UICollectionView实现的无限循环的轮播图效果
显示效果:
使用方法:
XLCycleCollectionView *cyleView = [[XLCycleCollectionView alloc] initWithFrame:CGRectMake(0, 20, self.view.bounds.size.width, 200)];
cyleView.data = @[@"Hello",@"world",@"!"];
[self.view addSubview:cyleView];