当前位置: 代码迷 >> Iphone >> UITextField 怎么设置为密码方式显示
  详细解决方案

UITextField 怎么设置为密码方式显示

热度:173   发布时间:2016-04-25 06:31:52.0
UITextField 如何设置为密码方式显示?
UITextField 怎么设置成为一个 *号密码框 呢?

可以在 Interface Builder 里面直接设置吗?

------解决方案--------------------
Attributes inspector 中 Text Field 下选中 Secure就可以了。
------解决方案--------------------
UItextField * test = [ UItextField alloc] init ];

test.secureTextEntry = YES;
------解决方案--------------------
探讨

UItextField * test = [ UItextField alloc] init ];

test.secureTextEntry = YES;