ios Changing UIScrollView scrollbar color to different colors

后端 未结 17 2421
我在风中等你
我在风中等你 2020-12-05 07:16

How can we change color of UIScrollview\'s scroll indicator to something like blue, green etc.

I know we can change it to white, black. But other then these colors.

17条回答
  •  情话喂你
    2020-12-05 07:25

    Here's more safe Swift 3 method:

    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        let verticalIndicator = scrollView.subviews.last as? UIImageView
        verticalIndicator?.backgroundColor = UIColor.green
    }
    

提交回复
热议问题