码迷,mamicode.com
首页 > 其他好文 > 详细

UITextView上添加默认文字

时间:2014-11-04 11:07:23      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   strong   on   bs   size   as   

1. 实现UITextView的代理方法

text.view.delegate = self;

2. 在UITextView上覆盖UILabel

ps:必须实现

label.enabled = NO;

label.backgroundColor = [UIColor clearColor];

3. 在UITextView - Delegate中实现

-(void)textViewDidChange:(UITextView *)textView

{

    inputTextView.text =  textView.text;

    if (textView.text.length == 0) {

            bgLabel.text = @"请输入要呼唤的内容...";

    }else{

            bgLabel.text = @"";

    }

}


UITextView上添加默认文字

标签:style   color   ar   sp   strong   on   bs   size   as   

原文地址:http://blog.csdn.net/qq_16855025/article/details/40780731

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