I have an UITextView
that should become the first responder (display the keyboard) when the controller loads. The only thing is, that I have 'inflated' two UIView
which each contain an UIButton
. The touch events on these buttons do work when the UITextView
is not yet the first responder, but after the UITextView
becomes the first responder, the UIButtons
are not responding to any tap-events..
How do I make sure the buttons still work when the textview becomes the first responder?