My application uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField.<
UITextView
UITextField
You can set the label on the UITextView by
[UITextView addSubView:lblPlaceHoldaer];
and hide it on TextViewdidChange method.
TextViewdidChange
This is the simple & easy way.