- 可以通过XIB和StoryBoard添加该视图。
演示效果:
self.loopScrollView = [[QXLoopScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 140)];
self.loopScrollView.delegate = self;
[self.contentView addSubview:self.loopScrollView];
self.loopScrollView.imgUrls = self.imageUrls;
#pragma mark - QXLoopScrollViewDelegate
- (void)loopScrollViewDidSelectIndex:(NSInteger)index
{
NSLog(@"选择%ld",index);
}