OK, this is my situation :
- I have an
NSMutableArray
bound to anNSTableView
, via anNSArrayController
. - I'm manipulating the table view's selection (trigger by keyboard), using
NSArrayController
'sselectNext:
andselectPrevious:
The thing is : The selection does change, but the table view doesn't scroll to the current selection, so that its content is visible.
What should I do? Any ideas?