我想更改UICollectionView的水平滚动条指示符的颜色,除了可以在故事板中完成的默认,黑色或白色?
答案 0 :(得分:0)
请参阅以下代码,了解滚动UICollection视图水平条颜色更改,请参阅下面的链接以获取更多信息,并从中下载示例代码。
http://blog.mosheberman.com/coloring-the-ios-uiscrollviewindicators/
func setScrollIndicatorColor(color: UIColor) {
for view in self.tableView.subviews {
if view.isKindOfClass(UIImageView.self),
let imageView = view as? UIImageView,
let image = imageView.image {
imageView.tintColor = color
imageView.image = image.imageWithRenderingMode(.AlwaysTemplate)
}
}
self.tableView.flashScrollIndicators()
}