我查看了所有类似的问题,它们与我所问的不同。我需要捕捉 UITextField 中实际文本的变化,而不仅仅是编辑状态。当 View 加载时,它将是第一响应者,我需要知道何时输入文本,以便我可以在导航栏中启用“下一步”。如果可以的话,请帮助我,这真的阻碍了我的项目。
补充:我目前正在使用-它不起作用:
[textField addTarget:self actionselector(textFieldDidChange) forControlEvents:UIControlEventValueChanged];
Best Answer-推荐答案 strong>
实现UITextFieldDelegate 协议(protocol),响应textField:shouldChangeCharactersInRange:replacementString: 方法。
- (BOOL)textFieldUITextField *)textField shouldChangeCharactersInRangeNSRange)range replacementStringNSString *)replacementStr {
// Enable "Next" if you like what's entered in the replacementStr
}
关于objective-c - 如何捕捉 UITextField 文本的变化?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11604960/
|