Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8111593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:11:00+00:00 2026-06-06T02:11:00+00:00

I need a UIKeyboard that display the default UIKeyboardType without the number 0-9. I

  • 0

I need a UIKeyboard that display the default UIKeyboardType without the number 0-9. I only need to hide those buttons.

Is there a way to access the the different button of the keyboard so i could set then hidden?
If no, can i detect when the “.?123” button is pressed AND add a subview to cover the first row?
Or any pointer to a better approach?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T02:11:01+00:00Added an answer on June 6, 2026 at 2:11 am

    There is no public API for disabling access to the number and punctuation keys. You could dig through the keyboard’s view hierarchy to try to hide the number toggle key, but that is likely to break in the future (the keyboard view hierarchy has changed in the past).

    It would be much simpler to just filter out the characters you don’t like in your text control’s delegate. For example, let’s say you only want to allow the user to type in letters. If you have a UITextField, set its delegate to your view controller and implement this method in your view controller:

    - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
        NSRange all = NSMakeRange(0, string.length);
        if (all.length == 0) {
            // deletion
            return YES;
        }
    
        NSRange letters = [string rangeOfCharactersFromSet:[NSCharacterSet letterCharacterSet]];
        return NSEqualRanges(all, letters);
    }
    

    If you have a UITextView, the method is called textView:shouldChangeTextInRange:replacementText:.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need to know how to get YQL to return only data that's newer than
Normal UITextField displays a UIKeyboard which includes alpha+Numberic+specials But I need alpha only... I
Need to an expression that returns only things with an I followed by either
I need to know type of uikeyboard which is currently being shown. Is there
I need to add done button on tool bar with UIkeyboard(type) Number Pad, to
Need help with a query that I wrote: I have three tables Company id
need a little help with this one. I have a form that I am
Need your help with my PHP/MYSQL array. I have a php script that selects
I need to add a button to UIKeyboard in the place of Return key
Need a way to navigate/browse XSLT files easily with Vim. Similar to the way

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.