如何限制UITextField內輸入的字數(很好很強大)

在輸入東西的時候,如果想限制最大字數,可以用下面方法:

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

{

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

        return YES;

    }

    NSString * aString = [textField.text stringByReplacingCharactersInRange:range withString:string];

    if (self.searchTextField == textField)

    {

        if ([aString length] > 5) {

            textField.text = [aString substringToIndex:5];            

            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil

                                                             message:@"超過最大字數不能輸入了"

                                                            delegate:nil

                                                   cancelButtonTitle:@"Ok"

                                                   otherButtonTitles:nil, nil];

            [alert show];

            [alert release];

            return NO; 

        } 

    } 

    return YES; 

}

轉自http://blog.csdn.net/pjk1129/article/details/8469601

發佈了27 篇原創文章 · 獲贊 3 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章