UITextView继承自 UIScrollView,所以通过调用 flashScrollIndicators
方法 就可以显示滚动条。
文档介绍如下:
// displays the scroll indicators for a short time.
// This should be done whenever you bring the scroll view to front.
- (void)flashScrollIndicators;
系统介绍说该方法只有显示一段时间,所以想要一直保持显示,可以通过定时器调用该方法解决。
@objc func flashScrollBar() {
//让隐式动画失效、不会出现一直闪的问题
CATransaction.begin()
CATransaction.setDisableActions(true)
textView.flashScrollIndicators()
CATransaction.commit()
}
网友评论