//本文采用的代码量比较少的一种写法,测试中未出现bug
#import "ViewController.h"
#import "Masonry.h"
@interface ViewController ()
@property (nonatomic, strong) UITextView *textView;
@end
@implementation ViewController
- (void)viewDidLoad {
[self.view addSubview:self.textView];
[self.textView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.view).offset(100);
make.height.equalTo(@48);
make.right.equalTo(self.inputView).offset(-20);
make.left.equalTo(self.inputView).offset(20);
}];
}
-(UITextView *)textView{
if (!_textView) {
_textView = [[UITextView alloc] init];
_textView.font = [UIFont systemFontOfSize:14];
_textView.textColor = MIN_BLACKTITLE_COLOR;
UILabel *placeHolderLabel = [[UILabel alloc] init];
placeHolderLabel.text = @"请输入您的评论";
placeHolderLabel.textColor = [UIColor lightGrayColor];
placeHolderLabel.font = [UIFont systemFontOfSize:14];
[placeHolderLabel sizeToFit];
[_textView addSubview:placeHolderLabel];
[_textView setValue:placeHolderLabel forKey:@"_placeholderLabel"];
}
return _textView;
}
@end
UITextView添加placeholder
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 实现方法:通过监听UITextView的文本变化,重绘UITextView将placeholder绘制出来。 支持...
- 在实际项目开发中经常有需要在UITextView中添加提示用户输入的一些文字,类似UITextField的Plac...