UITextView 添加 pleaceholder

UITextView 默认没有 pleaceholder属性;

我们可以通过多种方式添加

在UITextView的代理方法中写

- (void)textViewDidBeginEditing:(UITextView *)textView
{
if ([textView.text isEqualToString:@"建议字数在300字左右"]) {
textView.text = @"";
textView.textColor = [UIColor blackColor]; //optional
}
[textView becomeFirstResponder];
}

参考:http://*.com/questions/1328638/placeholder-in-uitextview

上一篇:Python 数据类型--集合(set)


下一篇:没学过CSS等前端的我,也想美化一下自己的博客