gpt4 book ai didi

ios - 向无法删除的 UITextField 添加文本

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

我想做的是在 UITextField 的开头添加一些不能删除的文本。我在用户点击 UITextField 时添加此文本,如下所示:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{

if (textField.text.length == 0) {
textField.text = @"myText";
}

return YES;
}

如何防止用户以正常方式删除此文本? (例如,没有在 TextField 之上添加单独的 UILabel)。提前致谢!

最佳答案

您可以在 shouldChangeCharactersInRange 委托(delegate)方法中实现此代码。

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
if (textField.text.length == 1 && [string isEqualToString:@""]) {//When detect backspace when have one character.
textField.text = @"myText";
}
return YES;
}

关于ios - 向无法删除的 UITextField 添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16103453/

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