删除最后一个字符 UITextField

发布于 2024-08-27 22:40:39 字数 102 浏览 6 评论 0原文

我有一个 UITextField,我希望每次点击一个字符时,第一个字符都会被删除。这样我每次在文本字段中只有一个字符。此外,我希望它显示控制台日志中的每个点击。

我该怎么做?

I have an UITextField and I would like that for every tap on a character, the first character is deleted. So that I just have one character in my textField every time. Moreover I would like it to display every tap in the console log.

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

他不在意 2024-09-03 22:40:39

您需要在文本字段委托中实现 shouldChangeCharactersInRange 方法:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:
                  (NSRange)range replacementString:(NSString *)string{
    textField.text = @"";
    return YES;
}

您可能需要检查范围和字符串值以涵盖所有可能的情况(例如复制/粘贴操作)。此代码只是将文本字段的值设置为最后键入的字符。

You need to implement shouldChangeCharactersInRange method in your text field delegate:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:
                  (NSRange)range replacementString:(NSString *)string{
    textField.text = @"";
    return YES;
}

You may need to check for range and string values to cover all possible cases (like copy/paste actions). This code just sets the text field's value to the last typed character.

岁月打碎记忆 2024-09-03 22:40:39

UITextField 继承自 UIControl,因此您可以使用 UIControl 类中的目标操作机制:

[textField addTarget:self action:@selector(updateTextField) forControlEvents:UIControlEventValueChanged];

在操作方法中,您可以仅使用最后一个字符替换 UITextField 的文本,并将该字符记录在控制台中。请注意,由于更改 UITextField 的文本将再次导致“updateTextField”消息第二次发送到目标,因此您将需要某种机制来确定是否更新:

- (void)updateTextField {
    if(updateTextField == YES) {
        updateTextField = NO;
        NSString *lastChar = [textField.text substringFromIndex:[textField.text length]];
        [textField setText:lastChar];
        NSLog(@"%@", lastChar);
    } else {
        updateTextField = YES;
    }
}

或者类似的东西......

UITextField inherits from UIControl, so you can use the target-action mechanism that is part of the UIControl class:

[textField addTarget:self action:@selector(updateTextField) forControlEvents:UIControlEventValueChanged];

In the action method, you can replace the UITextField's text with only the last character and log that character in the console. Note that since changing the UITextField's text will again result in the "updateTextField" message being sent a second time to the target, you will need some kind of mechanism for determining whether to update or not:

- (void)updateTextField {
    if(updateTextField == YES) {
        updateTextField = NO;
        NSString *lastChar = [textField.text substringFromIndex:[textField.text length]];
        [textField setText:lastChar];
        NSLog(@"%@", lastChar);
    } else {
        updateTextField = YES;
    }
}

Or something like that anyway...

要走干脆点 2024-09-03 22:40:39
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    if (textField.text.length > 8) {
        return  NO;
    }  
    return YES;

}
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    if (textField.text.length > 8) {
        return  NO;
    }  
    return YES;

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文