Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 647 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 647 Bytes

ImageSlider

Simple images slider

Alt text Alt text

Usage Example

let vc = SimpleImageSlider()
vc.images = ["test1", "test2", "test3"]
self.navigationController?.pushViewController(vc, animated: true)

Custom indicator color

let vc = SimpleImageSlider()
vc.images = ["test1", "test2", "test3"]
vc.indicatorColor = UIColor.red
vc.currentIndicatorColor = UIColor.black
self.navigationController?.pushViewController(vc, animated: true)