码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 中 UITextView 限制最大输入字数

时间:2015-08-08 14:58:04      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

 

显示UITextView最大输入字数的代码

 

 1 -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
 2 {
 3     //如果是删除减少字数,都返回允许修改
 4     if ([text isEqualToString:@""]) {
 5         return YES;
 6     }
 7     if (range.location>= MaxCount)
 8     {
 9         return NO;
10     }
11     else
12     {
13         return YES;
14     }
15 }
16 - (void)textViewDidChange:(UITextView *)textView {
17     [self updateRemainCount];
18 }
19 - (void)updateRemainCount {
20     long count = MAX(0, (int)(MaxCount - self.textView.text.length));
21     self.lbRemainCount.text = [NSString stringWithFormat:@"当前可输入文字:%ld",count];
22 }

 

iOS 中 UITextView 限制最大输入字数

标签:

原文地址:http://www.cnblogs.com/huangzizhu/p/4713109.html

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