views:

47

answers:

1

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
And this code passes apple's Checks?
Sandro Meier
As fare as a I know it does, at least I had no problems.
eviltrue