读书人

UITextField限制字符篇幅

发布时间: 2012-07-26 12:01:08 作者: rapoo

UITextField限制字符字数

?

? ??[self.username_tf addTarget:self action:@selector(textEditingChanged:) forControlEvents:UIControlEventEditingChanged];

? ? [self.password_tf addTarget:self action:@selector(textEditingChanged:) forControlEvents:UIControlEventEditingChanged];

?

?

?

?

?

?

-(void)textEditingChanged:(UITextField *)textField

{

? ? if (textField == self.username_tf) {

? ? ? ? if ([textField.text length]>20) {

? ? ? ? ? ? textField.text=[textField.text substringToIndex:20];

?

? ? ? ? ? ? //?[iToast makeText:@"用户名长度不应该超过20个字符"];

? ? ? ? }?

? ? }else if (textField == self.password_tf||textField == self.repassword_tf) {

? ? ? ? if ([textField.text length]>15) {

? ? ? ? ? ? textField.text=[textField.text substringToIndex:15];

? ? ? ? }?

? ? }

?

?

}

读书人网 >移动开发

热点推荐