iOS 追蹤限制textfield輸入位數
阿新 • • 發佈:2019-05-12
blog 強制 ios 顏色 round 號碼 內容 sele maker
實現效果:強制用戶僅僅能輸入16位數,這裏是運用在信用卡號碼的輸入。
輸入字符數大於16,把字的顏色設為黑色。且無論繼續輸入什麽內容。僅僅取前16位。
若小於16位,把字的顏色設為紅色,且設置“無效”。
-(void)viewDidLoad{ [super viewDidLoad]; // 每隔0.1秒檢查輸入框 [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(checkCardInfoInput) userInfo:nil repeats:YES]; }
-(void)checkCardInfoInput{ BOOL isValid = YES; if ([self.cardNumberTextField.text length] >= 16){ self.cardNumberTextField.textColor = [UIColor blackColor]; self.cardNumberTextField.text = [self.cardNumberTextField.text substringWithRange:NSMakeRange(0, 16)]; } else{ self.cardNumberTextField.textColor = [UIColor redColor]; isValid = NO; } // 其它驗證 if (isValid == YES) { self.AddCreditCardButton.enabled = YES; self.AddCreditCardButton.backgroundColor = [UIColor greenColor]; } else{ self.AddCreditCardButton.enabled = NO; self.AddCreditCardButton.backgroundColor = [UIColor grayColor]; } }
iOS 追蹤限制textfield輸入位數