UITextField限制只能输入汉字(iOS)

1.声明变量:

{
    UITextField *emailTF; //邮箱
    UITextField *companyNameTF; //单位名称 声明变量 限制输入中文
    UITextField *companyPhoneTF; //单位电话。
}

2.添加监听:

  [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(textFiledEditChanged:) name:UITextFieldTextDidChangeNotification object:companyNameTF];

3.在监听中,过滤非中文字符,并且限制中文字符长度

//在监听中,过滤非中文字符,并且限制中文字符长度
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
    [textField resignFirstResponder];
    
    //过滤非汉字字符
    companyNameTF.text = [self filterCharactor:companyNameTF.text withRegex:@"[^\u4e00-\u9fa5]"];
    
    if (companyNameTF.text.length >= 14) {
        companyNameTF.text = [companyNameTF.text substringToIndex:4];
    }
    return NO;
}

- (void)textFiledEditChanged:(id)notification{
    
    UITextRange *selectedRange = companyNameTF.markedTextRange;
    UITextPosition *position = [companyNameTF positionFromPosition:selectedRange.start offset:0];
    
    if (!position) { // 没有高亮选择的字
        //过滤非汉字字符
//        companyNameTF.text = [self filterCharactor:self.companyNameTF.text withRegex:@"[^\u4e00-\u9fa5]"];
        companyNameTF.text = [self filterCharactor:companyNameTF.text withRegex:@"[^\u4e00-\u9fa5]"];
        
        if (companyNameTF.text.length >= 14) {
            companyNameTF.text = [companyNameTF.text substringToIndex:4];
        }
    }else { //有高亮文字
        //do nothing
    }
}

//根据正则,过滤特殊字符
- (NSString *)filterCharactor:(NSString *)string withRegex:(NSString *)regexStr{
    NSString *searchText = string;
    NSError *error = NULL;
    NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regexStr options:NSRegularExpressionCaseInsensitive error:&error];
    NSString *result = [regex stringByReplacingMatchesInString:searchText options:NSMatchingReportCompletion range:NSMakeRange(0, searchText.length) withTemplate:@""];
    return result;
}

4.移除监听:

//.移除监听:
- (void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

5、后台打印结果

 companyCoordinate = "";
 companyName = "我的公司";
 companyPhone = 1556666;
 contactsCount = 0;
 education = "博士后";
 email = "[email protected]";

一、复习知识

#初始化
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 100, 30)];
#设置占位文本
textField.placeholder = @"请输入文字";
#设置文本
textField.text = @"测试";
#设置文本的颜色
textField.textColor = [UIColor redColor];
#设置文本的字体
textField.font = [UIFont systemFontOfSize:14];
#设置文本的对齐方式
textField.textAlignment = NSTextAlignmentRight;
#设置输入框不能编辑
[textField setEnabled:NO];
#设置编辑框中的内容密码显示
textField.secureTextEntry = YES;
#启用文本字段时显示的背景图像。该图像显示在文本字段内容的其余部分后面。
textField.background = [UIImage imageNamed:@"登录logo"];
#设置边框样式(更多边框样式到补充说明中查看)默认的样式为UITextBorderStyleNone
textField.borderStyle = UITextBorderStyleRoundedRect;
#设置清除按钮的模式(更多清除按钮的模式到补充说明中查看)默认样式为UITextFieldViewModeNever
textField.clearButtonMode = UITextFieldViewModeUnlessEditing;
#文本字段文本的最小字体大小。当“调整为适合”选项启用时,文本字段会自动更改字体大小以确保文本的最大可读性。您可以使用此属性来指定您认为适合文本的最小字体大小。
textField.minimumFontSize = 12;
#设置键盘类型(更多键盘类型到补充说明中查看)
textField.keyboardType = UIKeyboardTypeNumberPad;
#设置键盘上返回键的类型(更多返回类型到补充说明中查看)
textField.returnKeyType = UIReturnKeyJoin;
#设置键盘的视觉样式(更多键盘的视觉效果到补充说明中查看)
textField.keyboardAppearance = UIKeyboardAppearanceLight;
#文本字段的拼写检查行为。此属性决定了拼写检查在打字过程中是启用还是禁用
textField.spellCheckingType = UITextSpellCheckingTypeNo;
#此属性决定了拼写检查在打字过程中是启用还是禁用。启用拼写检查后,文本对象会为所有拼写错误的单词生成红色下划线。如果用户点击拼写错误的单词,则文本对象向用户呈现可能的更正列表。
此属性的默认值是default,启用自动更正时启用拼写检查。
此属性中的值将覆盖用户在“设置”>“常规”>“键盘”中设置的拼写检查设置。
#文本字段的自动纠正行为。此属性确定在输入过程中自动更正是启用还是禁用
textField.autocorrectionType = UITextAutocorrectionTypeYes;
#自动大写样式适用于键入的文本。此属性决定在什么时候自动按下Shift键
textField.autocapitalizationType = UITextAutocapitalizationTypeAllCharacters;
#设置左边视图(注意:需要先设置左边视图的显示模式为UITextFieldViewModeAlways)
textField.leftViewMode = UITextFieldViewModeAlways;
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 20, 20)];
imageView.image = [UIImage imageNamed:@"验证码"];
textField.leftView = imageView;
#设置右边视图(注意:需要先设置右边视图的显示模式为UITextFieldViewModeAlways)
    textField.rightViewMode = UITextFieldViewModeAlways;
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 20, 20)];
    imageView.image = [UIImage imageNamed:@"验证码"];
    textField.rightView = imageView;

代理方法

#询问委托人是否应该在指定的文本字段中开始编辑。
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;        // return NO to disallow editing.
#告诉委托人在指定的文本字段中开始编辑。
- (void)textFieldDidBeginEditing:(UITextField *)textField;           // became first responder
#询问委托人是否应在指定的文本字段中停止编辑。
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField;          // return YES to allow editing to stop and to resign first responder status. NO to disallow the editing session to end
#告诉委托人对指定的文本字段停止编辑。
- (void)textFieldDidEndEditing:(UITextField *)textField;             // may be called if forced even if shouldEndEditing returns NO (e.g. view removed from window) or endEditing:YES called
#告诉委托人对指定的文本字段停止编辑。
- (void)textFieldDidEndEditing:(UITextField *)textField reason:(UITextFieldDidEndEditingReason)reason NS_AVAILABLE_IOS(10_0); // if implemented, called in place of textFieldDidEndEditing:
#询问委托人是否应该更改指定的文本。
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string;   // return NO to not change text
#询问委托人是否应删除文本字段的当前内容。
- (BOOL)textFieldShouldClear:(UITextField *)textField;               // called when clear button pressed. return NO to ignore (no notifications)
#询问委托人文本字段是否应处理按下返回按钮。
- (BOOL)textFieldShouldReturn:(UITextField *)textField;              // called when 'return' key pressed. return NO to ignore.

补充说明
设置UITextField占位文字的颜色的俩种方法
第一种

KVC修改 如果不先设置占位文字, 占位文字的颜色是不管用的:
textField.placeholder = @"占位字符";
textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];

第二种

通过attributedPlaceholder属性修改占位文字颜色
NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:@"请输入占位文字" attributes:@{NSForegroundColorAttributeName:[UIColor redColor],
    NSFontAttributeName:textField.font
    }];
textField.attributedPlaceholder = attrString;

自定义键盘

UIView *redView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 100)];
redView.backgroundColor = [UIColor redColor];
textField.inputView = redView;
textField.textColor = [UIColor redColor];

欢迎批评指正!!!!

你可能感兴趣的:(UITextField限制只能输入汉字(iOS))