1
在一個macOS項目中,我試圖獲取並設置NSTableView的滾動光標位置,代碼似乎工作,因爲不顯示錯誤,但光標不更新。如何保存並恢復Swift中的NSScrollView滾動位置?
var clipOrigin = tableView.enclosingScrollView?.contentView.bounds.origin // get the position
clipOrigin = CGPoint (x: 0.0, y: 3.0) // set a new position
tableView.enclosingScrollView?.contentView.scroll(to: clipOrigin!) // set the new position
我忘了什麼嗎?
[在插入行時保留相同的NSTableView滾動位置](http://stackoverflow.com/q/41965201/2227743) – Moritz