美文网首页
UITextView 默认显示滚动条

UITextView 默认显示滚动条

作者: 风儿吹啊吹 | 来源:发表于2019-11-17 20:47 被阅读0次

    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()
    }
    

    相关文章

      网友评论

          本文标题:UITextView 默认显示滚动条

          本文链接:https://www.haomeiwen.com/subject/polmictx.html