Hello,
I have made a subclass of NSTextField and trapped all keyup events on the textfield that my nib file has.
Problem is when i try to set any text into the text field in one of the button click event.
i cannot see any string in my textfield. Why is this so?

Thanks,
Ruhi.
I have made a subclass of NSTextField and trapped all keyup events on the textfield that my nib file has.
Problem is when i try to set any text into the text field in one of the button click event.
Code:
-(IBAction)setData: (id)sender
{
[mytextField setStringValue:str];
}
i cannot see any string in my textfield. Why is this so?
Thanks,
Ruhi.