Skip to content

Instantly share code, notes, and snippets.

@YGeorge
Last active August 31, 2015 13:25
Show Gist options
  • Save YGeorge/11394753 to your computer and use it in GitHub Desktop.
Save YGeorge/11394753 to your computer and use it in GitHub Desktop.
UITextView placeholder
- (void)textViewDidEndEditing:(UITextView *)txtView {
self.placeholderLabel.hidden = ([txtView.text length] > 0);
}
- (BOOL)textViewShouldBeginEditing:(UITextView *)textView {
self.placeholderLabel.hidden = YES;
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment