keyDown:即使在 AcceptFirstResponder 中实现的类也没有响应
我已经在我的应用程序中创建了 NSView。
- (BOOL) acceptsFirstResponder
{
return YES;
}
现在我实现的 keyDown: 没有响应...断点或 NSBeep();我已经实施了不开火。
我在同一个类中实现的 mouseDown 工作正常...
为什么我的 keyDown 没有响应?
I have made my NSView in my application.
- (BOOL) acceptsFirstResponder
{
return YES;
}
Now my implemented keyDown: doesnt respond... the breakpoint or NSBeep(); I have implemented dont fire.
My implmented mouseDown in that same class works fine...
Ideas why my keyDown is not responding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定它实际上成为第一响应者吗?
Are you sure it actually becomes the first responder?