限制 UITextField 的输入长度详解手机开发

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range  
                            replacementString:(NSString *)string  
{ 
    //Check that response should be a maximum 5 characters 
    if ([string length] > 0) { 
        return [textField.text length] < 5; 
    } 
    return YES; 
} 
 
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string 
{ 
    if([string length]>0{ 
        return [textField.text length]<5;  //这里报错,textField没有 text属性? 
    } 
       return YES; 
}

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/3346.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论