我正在尝试复制 iTunes 中搜索字段的行为,以查找股票代码和名称。具体来说,当您开始在搜索字段中输入时,会出现一个带有过滤项目的弹出框。在大多数情况下,我有这个工作但是我无法复制的是它处理第一响应者的方式
输入三个字符后,我的弹出框出现了。此时 NSSearchField 将失去第一响应者状态,因此我无法继续输入。我想要的行为是能够在弹出窗口出现后继续输入,如果使用箭头键滚动项目,然后继续输入,您将从搜索字段中的最后一个字符继续。
我尝试的是继承 NSTextView(将其用作 NSSearchField 的自定义字段编辑器)并覆盖
- (BOOL)resignFirstResponder
通过简单地返回 NO,我可以在弹出框出现后继续输入,但显然我无法选择弹出框中的任何项目。所以我尝试了以下方法,如果发生向下箭头或 mousedown 事件,则返回 YES。
@interface SBCustomFieldEditor ()
{
BOOL resignFirstRepond;
}
@end
@implementation SBCustomFieldEditor
- (id)initWithFrame:(NSRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
resignFirstRepond = NO;
}
return self;
}
- (BOOL)resignFirstResponder
{
return resignFirstRepond;
}
- (void)keyDown:(NSEvent *)theEvent
{
if ([theEvent keyCode] == 125) {
resignFirstRepond = YES;
[self resignFirstResponder];
}
[super keyDown:theEvent];
}
- (void)mouseDown:(NSEvent *)theEvent
{
resignFirstRepond = YES;
[self resignFirstResponder];
}
这适用于 mousedown 事件,但不适用于 keydown 事件,此外,当用户继续键入时,这并不能解决问题。
有什么建议么?