Re: NSTextFieldCell Delegate?

2009-05-27 Thread Shlok Datye
You could set a delegate for the NSTableView itself. In that delegate, you would implement the - (void)controlTextDidEndEditing:(NSNotification *)note delegate method. Within that method, you should be able to get the information you need. For example, NSTableView *tableView = [note object

NSTextFieldCell Delegate?

2009-05-27 Thread Greg Guerin
that the text field cell doesn't seem to have delegate methods? Why is this, and what can I do (other than subclassing) to be informed when editing is finished? Google keywords, taken directly from your Subject line: NSTextFieldCell De

NSTextFieldCell Delegate?

2009-05-27 Thread Walker Argendeli
I have a text field cell in a table view, from which I need to be made aware when it ends editing. I thought I would set my Controller class as the text field cell's delegate, and then use NSTextField's delegate method textDidEndEditing:, but realized that the text field cell doesn't seem