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.

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?

share|improve this question
is it ok if there will be spaces to separate numbers? – SentineL Dec 21 '11 at 7:20

4 Answers

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

share|improve this answer
+1 You can also do this programmatically. Check the UITextField docs. – JoePasq Dec 21 '11 at 7:50
if the input is 1234567891234567. i want to replace it as 1234 **** **** **** – iPhonePgr Dec 21 '11 at 8:59

you can try adding an observer to UITextFieldTextDidChangeNotification; every time that notification is fired, you can re-format the input.

share|improve this answer

if it is ok, thet there will be spaces to separate numbers:

[text addTarget:self action:@selector(textFieldEditing:) forControlEvents:UIControlEventEditingChanged];

- (IBAction)textFieldEditing:(id)sender {
    //separate string of your TextField text and add spaces where you whant
    [sender setText:(NSString *)]
}
share|improve this answer

You can read this sample code on GitHub.

It implements the UIKeyInput protocol to produce a custom input view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.