标签:style http io os 使用 ar 2014 div sp
今天做UITextField的密码显示功能时, iOS6.1下调用textField.secureTextEntry=true居然无效,无法恢复成星号。而iOS7下则正常,怀疑是6.1系统的Bug。
最后在StackOverflow找到了答案:http://stackoverflow.com/questions/23782671/ios-uitextflied-securetextentry-not-working-on-ios-6-1/23782982#23782982
对于6.x的系统,使用如下方式改变secureTextEntry即可。
textField.enabled = NO;//iOS6.1Bug fix
textField.secureTextEntry = YES;
textField.enabled = YES;
这样可以解决问题
ios 6.x系统UITextView 设置为密码输入无效的问题
标签:style http io os 使用 ar 2014 div sp
原文地址:http://www.cnblogs.com/huangzizhu/p/3978024.html