UITextField 怎么设置成为一个 *号密码框 呢?
可以在 Interface Builder 里面直接设置吗?
------解决方案--------------------
Attributes inspector 中 Text Field 下选中 Secure就可以了。
------解决方案--------------------
UItextField * test = [ UItextField alloc] init ];
test.secureTextEntry = YES;
------解决方案--------------------