NSTextField delegate notifications — how to get te

2020-07-08 06:18发布

I've been trying to learn to use Xcode, but I'm getting confused with how to register that NSTextField has changed. Essentially, I have an NSTextField and a button. Clicking the button does stuff with the text in the field. However, I want to be able to get the text of the field without needing to use the text field "Action:send on end editing." That is, I want to be able to enter text and immediately press the button, without hitting enter or tabbing out of the text box. It seems like the way to do this would be by setting a delegate for my NSTextField that responds to

- (void)controlTextDidChange:(NSNotification *)aNotification

But I don't understand how to get the text that has been entered. I assume it has something to do with

[[aNotification userInfo] valueForKey:@"NSFieldEditor"];

but I really have no idea where to go from there.

3条回答
别忘想泡老子
2楼-- · 2020-07-08 06:43

If you're only ever handling a single text field, this may be simpler:

- (void)controlTextDidChange:(NSNotification *)obj {
    [self.inputField stringValue];
}

I'm totally ignoring all the complicated details of NSText and whatnot and just using the simplicity of the notification being sent and the simplicity of getting the string value from a text field.

查看更多
爷、活的狠高调
3楼-- · 2020-07-08 06:46

In your button action method, simply read the current string value in the text field:

- (IBAction)didClickTheButton:(id)sender {

    NSString* theString = [myTextField stringValue];

    // do something with theString

}
查看更多
仙女界的扛把子
4楼-- · 2020-07-08 06:54

You're on the right track! The object that you get out of the notification's user info dictionary is the Field Editor, which is simply an NSTextView that's handling the text input on the text field's behalf.

Once you have that object, all you have to do is ask it for its textStorage, which is an NSTextStorage* object holding the text. That object, in turn, has its string which is a plain old NSString holding just the characters.

NSTextView * fieldEditor = [[aNotification userInfo] objectForKey:@"NSFieldEditor"];
NSString * theString = [[fieldEditor textStorage] string];

*A subclass of NSAttributedString, which is an object holding a string and associated "attributes" like color, font, and underlining.

查看更多
登录 后发表回答