Re: tableViewSelectionDidChange does not fire on deselect

2014-04-01 Thread Ronald Hofmann
I found what was wrong, mea culpa :( At the very beginning I have some lines to to take over if row == -1 and that intercepted. It works like this: - (void)tableViewSelectionDidChange:(NSNotification *)notification { NSInteger row = [_tableView selectedRow];

Re: tableViewSelectionDidChange does not fire on deselect

2014-04-01 Thread Michael Starke
I can report the same error in my own project. It's a view based table view, single selection not firing on deselect. The table view bound is bound to an NSArrayController for data. On 01 Apr 2014, at 15:11, Keary Suska wrote: > On Mar 31, 2014, at 11:51 PM, Ronald Hofmann wrote: > >> I´m us

Re: tableViewSelectionDidChange does not fire on deselect

2014-04-01 Thread Keary Suska
On Mar 31, 2014, at 11:51 PM, Ronald Hofmann wrote: > I´m using tableViewSelectionDidChange to find out which row of myTableView > was clicked. > Works fine so far. I´m taking some action than. > > - (void)tableViewSelectionDidChange:(NSNotification *)notification > { > NSInteger row = [_

tableViewSelectionDidChange does not fire on deselect

2014-03-31 Thread Ronald Hofmann
Hi all, I´m using tableViewSelectionDidChange to find out which row of myTableView was clicked. Works fine so far. I´m taking some action than. - (void)tableViewSelectionDidChange:(NSNotification *)notification { NSInteger row = [_tableView selectedRow]; NSLog(@„Row: %il", row);