How to overlay on top of the Keyboard in xcode
How do you overlay something, ie a UIImageView over the keyboard whi开发者_开发技巧ch pops up when editing a UITextFIeld?
You can catch keyboard window using following code, if you put it into textFieldDidBeginEditing method:
UIWindow* keyboard = [[[UIApplication sharedApplication] windows] objectAtIndex:1];
精彩评论