_x000D_
func setPlaceholder(){_x000D_
var placeholderLabel = UILabel()_x000D_
placeholderLabel.text = "Describe your need..."_x000D_
placeholderLabel.font = UIFont.init(name: "Lato-Regular", size: 15.0) ?? UIFont.boldSystemFont(ofSize: 14.0)_x000D_
placeholderLabel.sizeToFit()_x000D_
descriptionTextView.addSubview(placeholderLabel)_x000D_
placeholderLabel.frame.origin = CGPoint(x: 5, y: (descriptionTextView.font?.pointSize)! / 2)_x000D_
placeholderLabel.textColor = UIColor.lightGray_x000D_
placeholderLabel.isHidden = !descriptionTextView.text.isEmpty_x000D_
}_x000D_
_x000D_
_x000D_
_x000D_
//Delegate Method._x000D_
_x000D_
func textViewDidChange(_ textView: UITextView) {_x000D_
placeholderLabel.isHidden = !textView.text.isEmpty_x000D_
}_x000D_
_x000D_