textDidChange vs controlTextDidChange

Kann jemand mir erklären, warum textDidChange nicht mit meiner delegieren, aber controlTextDidChange Werke von NSTextField.

 - (void)controlTextDidChange:(NSNotification *)aNotification{
    NSBeep();
}

vom

 - (void)textDidChange:(NSNotification *)aNotification{
    NSBeep();
}
InformationsquelleAutor user1637802 | 2012-09-01
Schreibe einen Kommentar