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 UIviewcontrollers also look like new custom keyboard. How can i limit the custom keyboard to only one UIview ? Please help me.Thanks in advance.