is there any way to get notified when e.g. a UITextView becomes first responder? I'm currently subclassing & overriding - (BOOL)becomeFirstResponder but the problem is that this happens while the view becomes first responder, not after it.

I have also tried KVC, but it doesn't work:

[self addObserver:self
       forKeyPath:@"isFirstResponder"
          options:NSKeyValueObservingOptionNew
          context:NULL];

What technique should I use?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Is there a reason why you don't want to use its delegate method textViewDidBeginEditing: ?

link|improve this answer
Hm, true! Maybe I should take a break... ^^ – ryyst Mar 31 '11 at 13:15
feedback

Your Answer

 
or
required, but never shown

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