学习中ing...

限定UITextField的输入长度

2017-01-04  本文已影响1人  那片阳光已醉
// 注册通知监听字符的改变 
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textfieldEditChange:) name:@"UITextFieldTextDidChangeNotification" object:textFiel];
        // 实现通知       
- (void)textfieldEditChange:(NSNotification *)noti
{
    UITextField *textField = noti.object;
    
    if (textField.text.length > 11)
    {
        textField.text = [textField.text substringToIndex:11];
    }
    
}
上一篇 下一篇

猜你喜欢

热点阅读