#SJTextTips
##如何使用SJTextTips
#import "UITextField+tips.h"
textFiled.delegate = textField;
textFiled.matchArray = @[@"515783034",@"982042662",@"965917768"];
//设置开始匹配的位置
textFiled.startMatch = @1;
//设置成功的回调(匹配成功后,填充密码)
_txtInput.finished = ^() {
_txtPwd.text = @"账号匹配,自动导入密码";
};
//设置失败的回调(匹配失败后,删除密码框的内容)
_txtInput.failed = ^() {
_txtPwd.text = @"账号不匹配,清空密码";
};