Is there a way to hide number button and space button?

Mantaining UIKeyboard transparency??
I need a keyboard with only letters, backspace and NEXT button, nothing else.
I need compatibility from iOS 3.1+!
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This page has a great tutorial about customizing a keyboard. Looks like you might be able to use this to hide the buttons you don’t want, or change the current buttons.
Basically, you should register as an observer for the
UIKeyboardWillShowNotification:and do customization inside your
keyboardWillShow:notification handler:The prefix
@"<UIKeyboard"in this lineif([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES)might be different. So you should loop through once usingNSLogto print out all the subview descriptions to see what string you need to check for.And here is some info about the default keyboards that are provided (non-customized)
UIKeyboardType – The type of keyboard to display for a given text-based view.
Check out this UIKeyboardType page for images of each keyboard type.
Here are some definitions from UITextInputTraits Protocol Reference