Equivalent of UIScrollViewDelegate in Cocoa?

272 Views Asked by At

I am implementing a custom NSScroller class and I need to know when the scrollview is about to scroll and when it finished doing so. What would be an equivalent of UIScrollViewDelegate's viewDidScroll, etc for NSScrollView/NSScroller?

1

There are 1 best solutions below

0
On BEST ANSWER

Subclass NSScrollView and override reflectScrolledClipView:. Don't forget to call super's implementation!