开发者

Detecting Ctrl + Return or Ctrl + Enter presses

开发者 https://www.devze.com 2023-04-03 22:44 出处:网络
I find it very hard to find anything official on this matter. I have a TextView and override the keyDown event and try to detect if the user开发者_如何学Go pressed Ctrl + Enter.

I find it very hard to find anything official on this matter.

I have a TextView and override the keyDown event and try to detect if the user开发者_如何学Go pressed Ctrl + Enter.

- (void)keyDown:(NSEvent *)theEvent
{
    if([theEvent modifierFlags] & NSControlKeyMask && /* how to check if enter is pressed??? */)
    {
        NSLog(@"keyDown: ctrl+enter");
        if(_delegate)
        {
            if([_delegate respondsToSelector:@selector(didSomething:)])
            {
                [_delegate performSelector:@selector(didSomething:) withObject:nil];
            }
        }
    }else
    {
        [super keyDown:theEvent];
    }
}

I have tried different things but nothing worked.

anyone?

(i'm sorry to ask such a trivial question but i have googled for a while now and haven't found anything)


unichar c = [theEvent charactersIgnoringModifiers] characterAtIndex:0];

if(([theEvent modifierFlags] & NSControlKeyMask) && (c == NSCarriageReturnCharacter || c == NSEnterCharacter) {
    // do stuff
}

Alternatively, you can use the delegate's textView:doCommandBySelector::

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector {
    // insertLineBreak: is the method sent when a user presses control-return in a text view
    if (aSelector == @selector(insertLineBreak:)) {
            // do stuff
            return YES;
        }
    }

    return NO;
}


Instead of overriding -keyDown:, you could override the keyboard action (insert a line break) that’s sent when ctrl-return is typed in a text view:

- (void)insertLineBreak:(id)sender {
    NSLog(@"ctrl-return");

    if(_delegate)
    {
        …
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号