I have a UITextfield to enter a card number, of length 16. But i need to format the pin number as 1234 ** * *** at the time of entering. Can anyone help me with this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Do you mean u want the digits to be asterisk? if yes just go on to your xib file click the textfield and go to inspector attributes and check the secure button. hope thats what u want |
|||
|
you can try adding an observer to UITextFieldTextDidChangeNotification; every time that notification is fired, you can re-format the input. |
|||
|
|
|
if it is ok, thet there will be spaces to separate numbers:
|
|||
|
|
|
You can read this sample code on GitHub. It implements the |
|||
|
|