一切都在标题中;我想以编程方式向右滚动NSScrollView
,以便查看文档的结尾。
我试过了:
let width = scrollView.frame.size.width
let height = scrollView.frame.size.height
let toRight = CGRectMake(width, 0, width, height)
scrollView.scrollRectToVisible(toRight)
但它没有做任何事情。
任何帮助将不胜感激!
答案 0 :(得分:2)
我终于通过滚动内容视图来实现它:
scrollView.contentView.scrollPoint(NSPoint(width, 0))
答案 1 :(得分:0)
尝试
let toRight = CGRect(x: width, y: 0, width: 0, height: height)
scrollView.scrollRectToVisible(toRight)