How to set Custom keyboard specific to only a UITextField
? When I am changing using this method, all the keyboards in my application are changed to this new custom keyboard. I added:
[[NSNotificationCenter defaultCenter] addObserver:self.view
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
in a UIViewController
. But after going to that UIView
, keyboards in other UIViewController
s also look like new custom keyboard. How can i limit the custom keyboard to only one UIView
? Please help me. Thanks in advance.