I'm using the ABPeoplePicker
in a Mac OS X application. I've hooked up a button that changes the selected record to the default 'Me' record.
This works fine, and the record gets selected, but, I need to scroll the table to see the selected record.
NSTableView
has the -scrollRowToVisible:(NSInteger)rowIndex
method, but I can't find anything similar for the ABPeoplePickerView
There is a notification ABPeoplePickerNameSelectionDidChangeNotification
that is posted when the selected record changes, but I can't find a way of plugging in a property of the record into the view so I can make it visible.