1.通过XIB方式实现:
将UITextField中的secure选项勾中即可。
2.通过代码实现:
UItextField * test = [ UItextField alloc] init ];
test.secureTextEntry = YES;
以上两种方式实现文本框的密码样式。