how to add minimum text in textfield

janagowtham

I have three types of text fields. in that I need only minimum numbers only . below code I write-in but its not working. help me

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{ 
    if (country.text.length <= 4) {
        return YES;
    }

    if(code.text.length<=4 ) {
        return YES;
    }

    if(textPhone.text.length<=10) {
        return YES;
    }

    return YES;
}
Cyrille

Your logic is flawed here. You don't even base your checks on which field is edited.

Try this:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{ 

    // Allow backspace anyway
    if (range.length == 0)
        return YES;

    if (textField == country)
        return (country.text.length <= 4);

    else if (textField == code)
        return (code.text.length <= 4);

    else if (textField == textPhone)
        return (textPhone.text.length <= 10);

    // Default for all other fields
    return YES;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to add hint text in a Textfield in JavaFX

From Dev

How can I add text to combobox from textfield?

From Dev

How to add textField in UIAlertController?

From Dev

How to add image in textfield

From Dev

How to add a TextField if there is already an existing TextField in ABCPDF?

From Dev

Add rich text format functionality to django TextField

From Dev

Add text to an inactive viewcontroller's textfield

From Dev

Add rich text format functionality to django TextField

From Dev

QML TextField how to capitalize the text

From Dev

how to stop text overlapping in textfield

From Dev

How to set a text padding in a TextField?

From Dev

How to set a text padding in a TextField?

From Java

How to add TextField to UIAlertController in Swift

From Dev

How to add a TextField to UIAlertView in Swift

From Dev

How to add textfield in scrollview in ios?

From Dev

How to add TextField to ListView in NativeScript?

From Dev

How to add LongPressGestureRecognizer into disabled TextField

From Dev

How to get the input text from the TextField in an alert

From Dev

How to change the color of text in javafx TextField?

From Dev

Yii - How to validate a textfield for text only

From Dev

How to make text typed in TextField undeletable?

From Dev

How to copy text to Clipboard from TextField in Android

From Dev

Yii - How to validate a textfield for text only

From Dev

how can i put these print text into Textfield?

From Dev

How to add an image in textfield in sencha touch

From Dev

How to add a textfield to toolbar in swiftui (macos)

From Dev

How to add an image in textfield in sencha touch

From Dev

how to add and remove textfield in button action?

From Dev

how to add values from a textfield to a jcombobox in eclipse

Related Related

  1. 1

    How to add hint text in a Textfield in JavaFX

  2. 2

    How can I add text to combobox from textfield?

  3. 3

    How to add textField in UIAlertController?

  4. 4

    How to add image in textfield

  5. 5

    How to add a TextField if there is already an existing TextField in ABCPDF?

  6. 6

    Add rich text format functionality to django TextField

  7. 7

    Add text to an inactive viewcontroller's textfield

  8. 8

    Add rich text format functionality to django TextField

  9. 9

    QML TextField how to capitalize the text

  10. 10

    how to stop text overlapping in textfield

  11. 11

    How to set a text padding in a TextField?

  12. 12

    How to set a text padding in a TextField?

  13. 13

    How to add TextField to UIAlertController in Swift

  14. 14

    How to add a TextField to UIAlertView in Swift

  15. 15

    How to add textfield in scrollview in ios?

  16. 16

    How to add TextField to ListView in NativeScript?

  17. 17

    How to add LongPressGestureRecognizer into disabled TextField

  18. 18

    How to get the input text from the TextField in an alert

  19. 19

    How to change the color of text in javafx TextField?

  20. 20

    Yii - How to validate a textfield for text only

  21. 21

    How to make text typed in TextField undeletable?

  22. 22

    How to copy text to Clipboard from TextField in Android

  23. 23

    Yii - How to validate a textfield for text only

  24. 24

    how can i put these print text into Textfield?

  25. 25

    How to add an image in textfield in sencha touch

  26. 26

    How to add a textfield to toolbar in swiftui (macos)

  27. 27

    How to add an image in textfield in sencha touch

  28. 28

    how to add and remove textfield in button action?

  29. 29

    how to add values from a textfield to a jcombobox in eclipse

HotTag

Archive