本文介绍了如果我在 TextField 中写入,则启用按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当您在 TextField 中编写内容时,我在启用按钮时遇到了一些问题.如果 TextField 中没有任何内容,我将其禁用,但当您在其中写入内容时,我无法再次启用它.
I am having some problems with enabling a button when you write something in a TextField.I got it to disable if a there's nothing in the TextField but I can't make it to enable again when you write something in it.
我有这样的事情:
- (void)viewDidLoad {
[super viewDidLoad];
NSUInteger textLength = [_Name.text length];
[_doneButton setEnabled:(textLength > 0)];
}
推荐答案
试试这个
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if([textField.text length]>0){
[doneButton setEnabled:YES];
}
else{
[doneButton setEnabled:NO ;
}
希望对你有帮助..
这篇关于如果我在 TextField 中写入,则启用按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!