首页 > 代码库 > OC & Swift中UITextFiled、UITextView限制输入字数
OC & Swift中UITextFiled、UITextView限制输入字数
OC中限制字数的方法
我是用通知实现的,首先添加UITextFiled和UITextView的接收中心
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textViewNotifitionAction:) name:UITextViewTextDidChangeNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldNotifitionAction:) name:UITextFieldTextDidChangeNotification object:nil];
通知调用的方法
- (void)textViewNotifitionAction:(NSNotification *)userInfo{ if (_textV.text.length>=10) { NSString *str = [_textV.text substringToIndex:10]; _textV.text = str; }}- (void)textFieldNotifitionAction:(NSNotification *)userInfo{ if (_textF.text.length>=10) { NSString *str = [_textF.text substringToIndex:10]; _textF.text = str; }}
Swift中限制字数的方法
设置接收中心
NSNotificationCenter.defaultCenter().addObserver(self, selector: "textViewNotifitionAction:", name: UITextViewTextDidChangeNotification, object: nil); NSNotificationCenter.defaultCenter().addObserver(self, selector: "textFiledNotifitionAction:", name: UITextFieldTextDidChangeNotification, object: nil);
通知调用的方法
func textViewNotifitionAction(userInfo:NSNotification){ let textVStr = textV.text as NSString; if (textVStr.length >= 10) { let str = textVStr.substringToIndex(10); textV.text = str; } }func textFiledNotifitionAction(userInfo:NSNotification){ let textFStr = textF.text! as NSString; if (textFStr.length >= 10) { let str = textFStr.substringToIndex(10); textF.text = str; } }
OC & Swift中UITextFiled、UITextView限制输入字数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。