美文网首页
iOS --无限轮播图BCLoopScrollImageView

iOS --无限轮播图BCLoopScrollImageView

作者: 井底蛙之呱呱 | 来源:发表于2017-09-12 08:40 被阅读95次

    1.将BCLoopScrollImageView拖到自己的项目中

    2.在使用的时候调用初始化方法:- (id) initWithFrame:(CGRect)frame images:(NSArray *)images即可完成轮播效果

    - (void)viewDidLoad {

    [super viewDidLoad];

    self.title = @"UIImage自动轮播";

    NSArray *imageDataSource = [NSArray arrayWithObjects:@"1.jpg", @"2.jpg", @"3.jpg", nil,nil];

    //只需初始化就可以实现效果

    BCLoopScrollImageView * loopScrollImageView =[[BCLoopScrollImageView alloc] initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, 130) images:imageDataSource];

    [self.view addSubview:loopScrollImageView];

    }

    相关文章

      网友评论

          本文标题:iOS --无限轮播图BCLoopScrollImageView

          本文链接:https://www.haomeiwen.com/subject/fvwqsxtx.html