gpt4 book ai didi

iphone - iPhone App 中的 TextField 空间验证

转载 作者:行者123 更新时间:2023-11-28 18:26:50 25 4
gpt4 key购买 nike

我希望用户不要在文本字段中使用任何额外的空格。如何做到这一点?

描述:我有一个文本字段,用于“某物的标题”。我不想让任何用户提供额外的空格/仅提供空格。

问候

最佳答案

这里是 UITextFieldDelegate 的小片段:

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if([[textField text] length] > 0) {
if([[textField text] characterAtIndex:([[textField text] length]-1)] == ' ' &&
[string isEqualToString:@" "]) return NO;
}
return YES;
}

关于iphone - iPhone App 中的 TextField 空间验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6955649/

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