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];
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
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 = [_
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);