I have a few textfields with decimal keyboards, I want to make them showing $ and comma ($1,222,000.00) in the screen. And also change the spacing of the text because when added comma it will be crowded.
for textField in self.numberTextField! as [UITextField] {
textField.keyboardType = .DecimalPad
textField.inputAccessoryView = keyboardToolbar
numberTextField is my collection of the textfields. Any help appreciated! Thanks a lot!