如何在UITextView中插入占位符?
有没有办法在 UITextView
中插入类似于 UITextField
的占位符?如果是,请向我发送任何链接或任何实现此功能的想法。
Is there any way to insert a placeholder in a UITextView
similar to the UITextField
? If yes, then please send me any link or any idea to implement this functionality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
无法在 UITextView 中创建占位符,但您可以通过此生成类似占位符的效果。
或者您可以在文本视图中添加标签,就像
并设置
It is not possible to create placeholder in UITextView but you can generate effect like place holder by this.
OR you can add label in textview just like
and set
另一个简单的解决方案是只需将
UILabel
添加到您的UITextView
子视图中。如果您愿意的话,您甚至可以添加小动画来淡入/淡出
UILabel
。Another easy solution is to just add a
UILabel
to yourUITextView
subview.You can even add little animations to fade in/out the
UILabel
if that's your thing.另一个简单的解决方案是为 placeholderLabel 的隐藏属性设置 YES/NO
Another easy solution is set YES/NO for hidden properties of placeholderLabel
您可以使用下面的函数来制作占位符,使用它您可以在其上设置占位符。
您可以使用它来管理占位符文本。
You can use as below function for making placeholder, Using thi you can set place holder on it..
You can manage placeholder text using this..
另一个解决方案是将占位符 UITextView 放在实际 UITextView 的顶部。给它相同的框架。为占位符 TextView 设置
placeholderTextView.enabled = NO
。然后,仅为普通 textView 设置委托并定义此 UITextViewDelegate 方法:
Another solution is to put a placeholder UITextView right on top of the actual UITextView. Give it the same frame. Set
placeholderTextView.enabled = NO
for the placeholder TextView.Then, set the delegate for the normal textView only and define this UITextViewDelegate method: