自定义广告轮播控件

前要

  • 现在 主流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));
}];

欢迎交流

  • 如发现问题 或者有好的建议请联系我
    邮箱:[email protected]
    微博:戳这里

demo点我

你可能感兴趣的:(自定义广告轮播控件)