码迷,mamicode.com
首页 > 编程语言 > 详细

OC & Swift中UITextFiled、UITextView限制输入字数

时间:2016-09-24 12:07:58      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

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限制输入字数

标签:

原文地址:http://www.cnblogs.com/zxh-iOS/p/5902743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!