I need to place custom keypad.
For that, I need to disable my default iPhone keypad.
For that I use:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
return NO;
}
If I use this the cursor isn't visible.
So, I don't find which textfield is selected.
I need functionality so that my keypad is the same as the default keypad.
Can anyone help me.
Thank you in advance.