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

IOS UITextView加上placeholder

时间:2014-04-29 13:42:21      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:uitextview   placeholder   

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

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

具体实现如下:

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
    if (![text isEqualToString:@""]) {
        _label1.hidden = YES;
    }
    
    if ([text isEqualToString:@""] && range.location == 0 && range.length == 1) {
        _label1.hidden = NO;
    }

    return YES;
}

说明如下:

(1) _label1 是加在UITextView上的UILabel

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

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

效果如下:

mamicode.com,码迷


IOS UITextView加上placeholder

标签:uitextview   placeholder   

原文地址:http://blog.csdn.net/chchong1234/article/details/24646719

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