iOS中电话号码中间每四位加一个空格

首先在.h页面签上代理  UITextFieldDelegate

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{

    if (textField == self.phonenumber) {

        if ([string isEqualToString:@""]) {

            if ((textField.text.length - 2) % 5 == 0) {

                textField.text = [textField.text substringToIndex:textField.text.length - 1];

            }

            return YES;

        }else{

            if (textField.text.length % 5 == 0) {

                textField.text = [NSString stringWithFormat:@"%@ ",textField.text];

            }

        }

        return YES;

    }

    return YES;

}

你可能感兴趣的:(iOS,技术)