I have a few different NSTextFields with different tags wired up to a delegate in Interface Builder. My delegate over-rides controlTextDidChange:(NSNotification *)noif
When my controlTextDidChange gets called, how do I get the tag of the text field which posted the notification?
Based on the tag, I want to call different methods from with controlTextDidChange.
I can get the nofications userInfo dictionary, but this returns an NSTextView, not my NSTextField.
Any suggestions?