美文网首页
iOS 带提示框和文字显示的textView

iOS 带提示框和文字显示的textView

作者: Sheldon_WDG | 来源:发表于2018-03-17 15:08 被阅读0次

    最近封装了一个带有提示框和文字限制textView,使用方法很简单:初始化,遵循代理,实现代理方法就可以了。

    1、初始化:

    self.textView = [[WDGTextView alloc] initWithFrame:CGRectMake(15, 100, self.view.frame.size.width - 30, 200) backgroundColor:[UIColor whiteColor] textColor:[UIColor redColor] fontSize:15 placeHolder:@"请输入文本" placeHolderTextColor:[UIColor lightGrayColor] maxTextLength:300 hiddenMaxText:NO];

    2、遵守代理:

    self.textView.textViewDelegate = self;

    3、实现代理方法:

    当需要显示字数显示的时候,必须实现这个代理方法,虽然在这里可以什么都不用操做

    - (void)refreshTextLimit {

        NSLog(@"Sheldon");

    }

    Demo地址:

    GitHub:https://github.com/Sheldon-WDG/WDGTextViewDemo.git

    码云:https://gitee.com/SheldonAndHoney/WDGTextViewDemo

    喜欢的话多多点赞😜

    相关文章

      网友评论

          本文标题:iOS 带提示框和文字显示的textView

          本文链接:https://www.haomeiwen.com/subject/hmdjqftx.html