How do you overlay something, ie a UIImageView over the keyboard which pops up when editing a UITextFIeld?
A:
You can catch keyboard window using following code, if you put it into textFieldDidBeginEditing method:
UIWindow* keyboard = [[[UIApplication sharedApplication] windows] objectAtIndex:1];
eviltrue
2010-09-15 20:18:00
And this code passes apple's Checks?
Sandro Meier
2010-09-15 20:24:48
As fare as a I know it does, at least I had no problems.
eviltrue
2010-09-16 06:38:33