UITextField 明暗文坐标显示优化

- (IBAction)openEyes:(UIButton *)sender {
    sender.selected = !sender.selected;
    //密文明文更换时候的出现空格 或者光标错乱
    NSString *text = self.passwordTextField.text;
    self.passwordTextField.text = @"";
    self.passwordTextField.secureTextEntry = !sender.selected;
    self.passwordTextField.text = text;
}

猜你喜欢

转载自blog.csdn.net/xiaobo0134/article/details/84664392
今日推荐