前要
- 现在 主流app的首页基本都有banner滚动播放吧,随手封装了下,使用如下:
1.异步下载使用SDWebImage
2.循环时间:默认5秒,可自定义,(设置0则不滚动)
3.滚动点: 默认居中,可设置居右或者直接隐藏
4.缺省图片:默认为nil,可自定义
API
CCAdsPlayView *apView = [CCAdsPlayView adsPlayViewWithFrame:CGRectMake(0, 0,screenWidth, screenHeight) imageGroup:imgArray];
//apView.pageContolAliment = CCPageContolAlimentRight;
//apView.animationDuration = 1.;
//apView.placeHoldImage = [UIImage imageNamed:@"Default-568h"];
[self.view addSubview:apView];
//这句可以在任何地方使用,异步下载并展示
[apView startWithTapActionBlock:^(NSInteger index) {
NSLog(@"点击了第%@张",@(index));
}];
欢迎交流