I use TextView in Collection View Cell. I want TextView always show scroll indicator when its content can be scrollable. I use this method below. But It shows only first after that it disappear. How to make scroll indicator of TextView always show?
override func draw(_ rect: CGRect) {
super.draw(rect)
self.descriptionTextView.flashScrollIndicators()
}