uitextfield setSecureTextEntry无法在ios6上运行

时间:2014-04-11 07:53:26

标签: ios uitextfield

我有一个安全类型的文本文件,即密码文本字段,当我点击它时,我有一个按钮显示输入的密码。

这是参考代码......

 ......

UIButton *showPwdBtn = (UIButton*)sender;
showPwdBtn.selected = !showPwdBtn.selected;
[self.passwordTextField setSecureTextEntry:!showPwdBtn.selected];
.......

但是当我在显示密码按钮上随机点击后进行猴子测试时,setSecureTextentry没有使用安全类型更新uitextfiled。

当用户点击显示密码时,密码将会显示,当他取消选择显示密码时,密码将再次变为安全(*)文字。

但遗憾的是它没有为猴子测试工作...为什么setSecureTextentry没有更新?

1 个答案:

答案 0 :(得分:0)

你能试试吗

showPwdBtn.selected = !showPwdBtn.selected;
[self.passwordTextField setSecureTextEntry:showPwdBtn.selected];

只有一个不操作