mark:
手把手教你如何給TextView添加placeholder屬性
摘要:
調(diào)用[self setNeedsLayout];時(shí),其實(shí)是觸發(fā)了
- (void)layoutSubviews {
}
這個(gè)函數(shù)
#pragma mark -監(jiān)聽文字改變
- (void)textDidChange {
self.placeholderLabel.hidden = self.hasText;
}
注:這個(gè) hasText 是一個(gè) 系統(tǒng)的 BOOL 屬性酬蹋,如果 UITextView 輸入了文字 hasText 就是 YES疗垛,反之就為 NO。