小编use*_*802的帖子

textDidChange vs controlTextDidChange

有人可以解释为什么textDidChange没有处理我的委托,但controlTextDidChange在NSTextField中工作.

 - (void)controlTextDidChange:(NSNotification *)aNotification{
    NSBeep();
}
Run Code Online (Sandbox Code Playgroud)

 - (void)textDidChange:(NSNotification *)aNotification{
    NSBeep();
}
Run Code Online (Sandbox Code Playgroud)

objective-c

6
推荐指数
1
解决办法
5740
查看次数

标签 统计

objective-c ×1