gpt4 book ai didi

objective-c - iPhone : how to decrease no. 在 UITextField 中输入文本时依赖 UILabel

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:52:24 25 4
gpt4 key购买 nike

当我在 UITextField 上键入字符时,在 UITextField 下方,我放置了显示 200 的小 UILable,当在 UITextField 上输入字符 时,计数必须减一对于每个字符和在 UILabel 上显示,你能建议我如何处理吗

最佳答案

在您的 textField 委托(delegate)中:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
lblYourLabel.text = [NSString stringWithFormat:@"Characters: %d / 200",[textField.text length]];
return YES;
}

关于objective-c - iPhone : how to decrease no. 在 UITextField 中输入文本时依赖 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4505519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com