I have a UIView where I want to receive keyboard input. I have tried:
[self becomeFirstResponder];
But it doesn't work.
I could implement a 'dirty' workaround by having a hidden UITextField and forwarding the keystokes to my UIView - but how does my UIView receive the keyboard input directly?