码迷,mamicode.com
首页 > 其他好文 > 详细

35、输入框(UITextField)密码明暗文切换

时间:2017-05-11 10:24:43      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:背景   nsstring   string   cte   text   sel   end   itext   switch   

- (IBAction)pwdTextSwitch:(UIButton *)sender {

 

    // 前提:在xib中设置按钮的默认与选中状态的背景图 

    // 切换按钮的状态

    sender.selected = !sender.selected;

 

    if (sender.selected) { // 按下去了就是明文

 

        NSString *tempPwdStr = self.pwdInput.text;

        self.pwdInput.text = @""; // 这句代码可以防止切换的时候光标偏移

        self.pwdInput.secureTextEntry = NO;

        self.pwdInput.text = tempPwdStr;

 

    } else { // 暗文

 

        NSString *tempPwdStr = self.pwdInput.text;

        self.pwdInput.text = @"";

        self.pwdInput.secureTextEntry = YES;

        self.pwdInput.text = tempPwdStr;

    }

}

35、输入框(UITextField)密码明暗文切换

标签:背景   nsstring   string   cte   text   sel   end   itext   switch   

原文地址:http://www.cnblogs.com/qiangzheVSruozhe/p/6839262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!