I'm making an application which uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField.
Does anyone know how to do this?
Thanks in advance.
|
I'm making an application which uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField. Does anyone know how to do this? Thanks in advance.
| ||||
feedback
|
|
I made a few minor modifications to bcd's solution to allow for initialization from a xib file, text wrapping, and to maintain background color. Hopefully it will save others the trouble. UIPlaceHolderTextView.h
UIPlaceHolderTextView.m
| |||||||||||||||
feedback
|
|
I wasn't too happy with any of the solutions posted as they were a bit heavy. Adding views to the view isn't really ideal (especially in Here is my solution: SSTextView SSTextView.h
SSTextView.m
It's a lot simpler than the others, as it doesn't use subviews (or have leaks). Feel free to use it. Update 11/10/11: It is now documented and supports use in Interface Builder. | |||||||||||||
feedback
|
|
What you can do is set up the text view with some initial value in the It's not exactly the same as the placeholder functionality in a UITextField, but it's close. | |||||||||
feedback
|
|
I found myself a verry easy way to imitate a place-holder
Edit: Changed if statements to compare tags rather than text. If the user deleted their text it was possible to also accidentally delete a portion of the place holder
It is also possible to reset the placeholder text when the keyboard returns and the [textView length] == 0 EDIT: Just to make the last part clearer - here's is how you can set the placeholder text back:
| |||||
feedback
|
|
this is how I did it: UITextView2.h
UITextView2.m
| |||
|
feedback
|
|
You could also create a new class TextViewWithPlaceholder as a subclass of UITextView. (This code is kind of rough -- but I think it's on the right track.)
In your delegate, add this:
| |||||
feedback
|
|
You can set the label on the
and hide it on This is the simple & easy way. | ||||
|
feedback
|
|
I made my own version of the subclass of 'UITextView'. I liked Sam Soffes's idea of using the notifications, but I didn't liked the drawRect: overwrite. Seems overkill to me. I think I made a very clean implementation. You can look at my subclass here. A demo project is also included. | |||
|
feedback
|
|
I created an instance variable to check whether I'll show the placeholder or not:
On viewDidLoad I set:
Here's what this does:
I also created a button to resign the keyboard. You don't have to do this but the cool thing here is that the placeholder is shown again if nothing was entered
| |||
|
feedback
|
|
Three20's TTTextEditor (itself using UITextField) supports placeholder text as well as growing by height (it turns into a UITextView). | |||
|
feedback
|
|
OK my ansewer is a bit different I create a small class to do it for you. TextViewShader.m file
TextViewShader.h file
this is the simple one line of code usage (dont forget to add #import "TextViewShader.h")
have fun :) | ||||
|
feedback
|
|
Simple way to use this within some line of code: Take one label up to UITextView in .nib connecting this label to your code , After it.
| ||||
|
feedback
|
|
Easy way, just create placeholder text in UITextView by using the following UITextViewDelegate methods:
just remember to set myUITextView with the exact text on creation e.g.
and make the parent class a UITextView delegate before including these methods e.g.
| |||||||||||
feedback
|
|
iPhone:How to insert placeholder in UITextView? The answer of PJR works like a charm. The ones here didn't work for me. Maybe an iOS5 thing. | |||
|
feedback
|