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 6757171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:36:51+00:00 2026-05-26T13:36:51+00:00

When I delete characters from a UITextField field one-by-one, the delegate method textField:shouldChangeCharactersInRange:replacementString: is

  • 0

When I delete characters from a UITextField field one-by-one, the delegate method textField:shouldChangeCharactersInRange:replacementString: is called.

When I type a full line of characters into a textfield, and then hold down the delete key, however iOS at first calls the delegate for each character it deletes. But at some point (about half way through the line) it just deletes everything that remains. The strange thing is that textField:shouldChangeCharactersInRange:replacementString: is not called when this happens. Neither is textFieldShouldClear:.

How can I detect this event? I want to update UI when the textfield is empty. And if I empty it in this fashion, my code fails to detect.

  • 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-05-26T13:36:52+00:00Added an answer on May 26, 2026 at 1:36 pm

    You can register an object to observe UITextFieldDidChangeNotification on your text field.

    For example:

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldDidChange:) name:UITextFieldTextDidChangeNotification object:self.textField];    
    }
    

    then

    - (void)textFieldDidChange:(NSNotification *)notification
    {
        UITextField *aTextField = [notification object];
        if ([aTextField.text length] == 0) {
            aTextField.backgroundColor = [UIColor redColor];
        }
    }
    

    if you set a breakpoint on

    aTextField.backgroundColor = [UIColor redColor];
    

    You will see that it is called right before the last deletion occurs that sets the text field’s text property to nil.

    You could also simply access your property self.textField, but I am demonstrating how to access the object the notification references. If you leave out the last parameter (object:) in -addObserver:selector:name:object: it will call the notification for all textFields in that object’s instance.

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

Sidebar

Related Questions

I try to delete more then one white characters from my string: $content =
I want to delete foo() if foo() isn't called from anywhere.
I have some strings that I want to delete some unwanted characters from them.
I have to delete every word containing at least one number from each file
My app is force closing when I delete the last of my characters from
NSString *string=@test1@sdk.com; Now I want to delete all the characters of the string from
How might I tell mysql to.. delete the first 3 characters from mytable.title only
I just wanna to delete from specified text file first N characters, but i'm
Using Python I need to delete all characters in a multiline string up to
I'm trying to delete some files with unicode characters in them with batch script

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.