我试图在RSKGrowingTextview成为第一个响应者并且光标位于文本视图中之后更改它的占位符文本,但是尚未输入任何文本。
基本上,它以带有类似#34的标签的文本视图开始;发表您的评论"
当用户选择文本视图键入内容并弹出键盘时,应该说出"键入您的评论"。
我试图做类似的事情:
func textViewShouldBeginEditing(_ textView: UITextView) -> Bool {
textView.placeholderText = "Type your comment" //This does not
self.commentTextView.placeholderText = "Type your comment" //This does not
self.postButton.alpha = 1.0 //This works but is also unrelated
return true
}