I have an IBAction linked up to EditingDidBegin on all my UITextFields, so why isn’t the following code working when the UITextFields are tapped on?
-(IBAction)keyboardShouldShow
{
[self becomeFirstResponder];
NSLog(@"Keyboard Showing");
}
Also bear in mind that the keyboard will not show unless this code is added because of other code I have in my project file.
Thanks
your self is not your textfield.try to change the method to this and relink it to editingdidbegin.
HIH