我的应用中有文字视图。我需要验证文本视图的输入。规则如下
如何开发这个第一个字符过滤逻辑?
我在我的应用程序中编写了以下代码,但它仍然没有给我正确的输出...任何人都可以告诉我错误在哪里???
- (void)textViewDidBeginEditing:(UITextView *)textView { NSString * rawString = [textView text];
NSCharacterSet *whitespace = [NSCharacterSet whitespaceAndNewlineCharacterSet];
NSString *trimmed = [rawString stringByTrimmingCharactersInSet:whitespace];
if ([trimmed length] == 0)
{
// Text was empty or only whitespace.
}
NSLog(@"length = %d",[trimmed length]);
[self.scrollView adjustOffsetToIdealIfNeeded];
}
答案 0 :(得分:1)
试试这个
NSString *string = [txtview text];;
NSString *trimmedString = [string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSLog(@"%d",trimmedString.length);