我在IOS应用程序中添加了一个反馈框,我希望它仅使用文本来提交用户的响应,但是当我尝试在框内输入空格时,将其作为文本并接受提交!我该如何预防?
答案 0 :(得分:3)
指定UIViewController
作为文本视图的委托(您可以通过编程方式执行,也可以在Interface Builder中指定委托);和
您的UITextViewDelegate
方法shouldChangeTextInRange
需要检查要插入的字符串是否包含空格:
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
if ([text rangeOfCharacterFromSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]].location != NSNotFound) {
return NO;
}
return YES;
}