textView.text=@"Placeholder";
- (void)textViewDidBeginEditing:(UITextView*)textView {
if([textView.text isEqualToString:HDLocalizedString(@"Placeholder")]) {
textView.text=@"";
textView.textColor= [UIColorblackColor];
}
}
- (void)textViewDidEndEditing:(UITextView*)textView {
if(textView.text.length<1) {
textView.text = HDLocalizedString(@"Placeholder");
textView.textColor= [UIColorlightGrayColor];
}
}
网友评论