Does anyone know the correct way to scroll the NSScrollView to the top? I was looking for an equivalent to the UIView\'s scrollToTop method.
This is what I have so far,
This also works fine. Set scroll point of documentView of NSScrollView
NSPoint pt = NSMakePoint(0.0, [[self.scrollView documentView] bounds].size.height); [self.scrollView.documentView scrollPoint:pt];