【ios】点击显示输入框密码

- (void)viewDidLoad {
    [super viewDidLoad];
    
    _showPwd.tag = 100;  //按钮的初始状态标记
    
}

- (IBAction)showPwdClicked:(UIButton *)sender {
    switch (_showPwd.tag) {
            //To show password
        case 100:
            _password.secureTextEntry = NO;
            _showPwd.tag = 200; //点击后改变状态标记
            break;
            
        case 200:
            _password.secureTextEntry = YES;
            _showPwd.tag = 100;
            break;
    }
}

猜你喜欢

转载自jameskaron.iteye.com/blog/2359826
今日推荐