I've spent hours looking for a solution to this problem, but to no avail. All I want to do is add a decimal point to the usual number pad keyboard. I have tried adding a key was a subview to the UIKeyboard, but that didnt seem to work. So basically what im doing is having my own keyboard made of UIButons. What i want to do is intersept the keyboard before it shows, and keep it from apperaring. I want to use
Code:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(stopKeyboard:)
name:UIKeyboardWillShowNotification
object:nil];
But i have no idea what to do in
Code:
-(void)stopKeyboard {//intercept and stop keyboard}
Any ideas?