GJImageCarouselView
自己写的Banner轮播图,自动循环,无限轮播。可以设置时间间隔、占位图。可以使用本地图片,也可以加载URL。
初始化
let imageCarouselView = GJImageCarouselView(
frame: CGRect.init(x: 0, y: 0, width: ScreenWidth, height: ScreenWidth/375*180),
imageTapBlock: { (index) in
self.imageTapBlock!(index)
})
imageCarouselView.imageUrlList =
imageCarouselView.autoScrollInterval = 3
如果你使用AutoLayout进行页面布局的话,需要在布局完成后,调用
layoutIfNeeded()