NSScrollView detect scroll position
问题 How can i detect scroll of position when the scroll at bottom? [[_scrollView contentView] setPostsBoundsChangedNotifications:YES]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(boundsDidChangeNotification:) name:NSViewBoundsDidChangeNotification object:[_scrollView contentView]]; - (void) boundsDidChangeNotification: (NSNotification *) notification { NSPoint currentScrollPosition = [[_scrollView contentView] bounds].origin; } 回答1: Update : My original answer was