最近封装了一个带有提示框和文字限制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
喜欢的话多多点赞😜
网友评论