[[scrollView contentView] setPostsBoundsChangedNotifications: YES]; NSNotificationCenter *center = [NSNotificationCenter defaultCenter] ; [center addObserver: self selector: @selector(boundsDidChangeNotification:) name: NSViewBoundsDidChangeNotification object: [scrollView contentView]]; ... - (void) boundsDidChangeNotification: (NSNotification *) notification { [self setNeedsDisplay: YES]; // or whatever work you need to do } // boundsDidChangeNotification
[[scrollView contentView] scrollToPoint: pointToScrollTo]; [scrollView reflectScrolledClipView: [scrollView contentView]];