- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
__weak UIAlertController * alertC = [UIAlertController alertControllerWithTitle:@"请输入密码" message:@"输入提示" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction * action_cancle = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
UIAlertAction * action_sure = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
// 移除监听
[[NSNotificationCenter defaultCenter] removeObserver:self name:UITextFieldTextDidChangeNotification object:nil];
// 获取输入内容
UITextField *tf = [[alertC textFields] objectAtIndex:0];
NSLog(@"%@", tf.text);
}];
[alertC addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.keyboardType = UIKeyboardTypeNumberPad;
// 添加监听
[[NSNotificationCenter defaultCenter] addObserverForName:UITextFieldTextDidChangeNotification object:textField queue:[NSOperationQueue currentQueue] usingBlock:^(NSNotification * _Nonnull note) {
// 设置按钮点击状态
action_sure.enabled = textField.text.length == 4 ? YES : NO;
}];
}];
[alertC addAction:action_cancle];
[alertC addAction:action_sure];
action_sure.enabled = NO;
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertC animated:YES completion:nil];
}
UIAlertController添加输入框并监听输入内容控制按钮是否可点击
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 澜妈想问下魅宝们,是否有过这样的疑惑,为什么同样的饭,闰蜜吃了没反应,自己却在疯狂的长肉?为什么!为什么!!为什么...
- 如果选择的是UIAlertView,想要是使用block回调选择的按钮,可以使用框架STAlertViewhttp...
- 2018年,最没有想到的事情是我当上了7连日报组组长,更没有想到的是我居然坚持了那么久,还乐此不疲。今天就给大家讲...