UITextField限制字數的方法


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

  - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string; 
    { 
        if ([string isEqualToString:@"\n"])  
        { 
            return YES; 
        } 
        NSString * toBeString = [textField.text stringByReplacingCharactersInRange:range withString:string]; 
         
        if (self.myTextField == textField)  
        { 
            if ([toBeString length] > 20) { 
                textField.text = [toBeString substringToIndex:20]; 
                UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:nil message:@"超過最大字數不能輸入了" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil] autorelease]; 
                [alert show]; 
                return NO; 
            } 
        } 
        return YES; 
    }  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM