vote up 1 vote down star

Hey guys, I am making a simple Twitter update application using MGTwitterEngine

and I can't seem to get the TextField in Interface Builder to clear the text after they click the "update" button. Is there an easy method that I could do this with or something in Interface Builder?

Thanks a lot!

flag

3 Answers

vote up 4 vote down check
IBOutlet NSTextField *textField;

[textField setStringValue:@""];
[textField display];
link|flag
vote up 3 vote down

Be aware that it probably isn't when the button is pressed that the NSTextField is cleared, but when the tweet is uploaded.

Else you risk losing the tweet if it couldn't be sent for some reason.

[Not a solution to the direct question, but a solution to follow-up problem...]

link|flag
vote up 3 vote down

I think you also need to define a IBAction method like:

- (IBAction) clearText:(id) sender {
    [textField setStringValue:@""];
    [textField display];
}

You can now assign a button event (e.g. button down) to this action.

link|flag
I assumed that he already has an action since he has an "Update" button. That's why I only added the outlet. – andi Apr 1 at 5:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.