美文网首页
textview给个placeholder

textview给个placeholder

作者: 杨大虾 | 来源:发表于2017-06-17 10:43 被阅读11次

mark:
手把手教你如何给TextView添加placeholder属性

摘要:

调用[self setNeedsLayout];时,其实是触发了
- (void)layoutSubviews {

}
这个函数
#pragma mark -监听文字改变

- (void)textDidChange {

self.placeholderLabel.hidden = self.hasText;

}
注:这个 hasText  是一个 系统的 BOOL  属性,如果 UITextView 输入了文字  hasText 就是 YES,反之就为 NO。

相关文章

网友评论

      本文标题:textview给个placeholder

      本文链接:https://www.haomeiwen.com/subject/kgvvqxtx.html