I create a simple project: https://github.com/edzio27/textFieldExample.git
where I add two UITextFields, one with login and second one with secure passw
Check this: UITextField secureTextEntry bullets with a custom font?
There is an elegant solution by glyuck which I liked. http://github.com/elegion/ELFixSecureTextFieldFont He created a category on UITextField. To have nicely displayed dots you have to include ELFixSecureTextFieldFont.h and .m files and then call - (void)fixSecureTextFieldFont on your textField once like this:
[yourCustomSecureTextField fixSecureTextFieldFont];
That is it.