标签: swift scroll
我有一个文本视图,我想以编程方式滚动它(沿着我的视频播放)。我在 ViewController 中创建了一个插座:
@IBOutlet weak var scrollView: NSScrollView!
如何使用它滚动到文字内容的特定字符范围?
答案 0 :(得分:0)
尝试使用NSClipView(doc)类中的方法scroll(to:)。
scroll(to:)
let point: NSPoint ... scrollview.documentView.scroll(point)