OC & Swift中UITextFiledUITextView限制输入字数
Posted zhangxianhongx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OC & Swift中UITextFiledUITextView限制输入字数相关的知识,希望对你有一定的参考价值。
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中UITextFiledUITextView限制输入字数的主要内容,如果未能解决你的问题,请参考以下文章
OC & Swift中UITextFiledUITextView限制输入字数
swiftDay01笔记 --swift和OC的不同点 && swift的基础语法