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

IOS UITextView加上placeholder

时间:2014-05-05 11:19:55      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:des   class   blog   code   tar   ext   

UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text这个代理方法就可以了。

具体实现如下:

 

 

  1. - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text  
  2. {  
  3.     if (![text isEqualToString:@""]) {  
  4.         _label1.hidden = YES;  
  5.     }  
  6.       
  7.     if ([text isEqualToString:@""] && range.location == 0 && range.length == 1) {  
  8.         _label1.hidden = NO;  
  9.     }  
  10.   
  11.     return YES;  
  12. }  

说明如下:

 

(1) _label1 是加在UITextView上的UILabel

(2) [text isEqualToString:@""] 表示输入的是退格键

(3) range.location == 0 && range.length == 1 表示输入的是第一个字符

效果如下:

bubuko.com,布布扣

 

原文出自http://blog.csdn.net/chchong1234/article/details/24646719感谢博主的分享~
 

IOS UITextView加上placeholder,布布扣,bubuko.com

IOS UITextView加上placeholder

标签:des   class   blog   code   tar   ext   

原文地址:http://www.cnblogs.com/longyun/p/3706069.html

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