我想我应该使用“clearsOnInsertion”,但我不确定该怎么做。我只是希望TextView已经说“在这里输入文本”,当用户单击要输入的TextView时,它会清除它们。
谢谢!
答案 0 :(得分:1)
编辑: 方法是:
- (void)textViewDidBeginEditing:(UITextView *)textView
{
//if you want it to only clear if the textView says "Enter text here" then do something like
if ([textView.text isEqualToString:@"Enter text here"])
{
textView.text = @"";
}
}