我有一个TextView,如下所示
我无法滚动文字视图,我在UITextViewDelegate
课程中添加了UIViewController
,并在isUserInteractionEnabled
textViewDidBeginEditing
属性
func textViewDidBeginEditing(_ textView: UITextView) {
textView.backgroundColor = UIColor.lightGray
textView.isEditable = false
textView.isUserInteractionEnabled = true
textView.isScrollEnabled = true
}
我需要做什么?
此外,在属性检查器
中启用了滚动