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?
|
I'm making an application which uses an Does anyone know how to do this? |
||||
|
|
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
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||
|
|
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. |
|||||||||
|
|
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.
|
|||||||||||||||
|
|
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:
|
|||||||||
|
|
You can set the label on the
and hide it on This is the simple & easy way. |
||||
|
|
|
this is how I did it: UITextView2.h
UITextView2.m
|
|||
|
|
|
Here's a way easier solution that behaves exactly like UITextField's placeholder but doesn't require drawing custom views, or resigning first responder.
(the second check in the else if statement is for the case where nothing is entered and the user presses backspace) Just set your class as a UITextViewDelegate. In viewDidLoad you should initialize like
|
||||
|
|
|
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:
|
|||||
|
|
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. |
|||
|
|
|
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
|
||||
|
|
|
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.
|
||||
|
|
|
Here's yet another way to do it, one that reproduces the slight indentation of Drag a In viewDidLoad, add:
Then add:
|
||||
|
|
|
Lets make it easy Create one UILabel and place it on your text view(Give the text as Placeholder-set color gray-you can do all this in your xib) Now in you header file declare the UILabel and also the the textviewDelegate Now you can simply hide the label when you click on the textview complete code below header
implementation
@end Dont forget to connect the textView and UILabel to filesowner from xib |
|||
|
|
|
Three20's TTTextEditor (itself using UITextField) supports placeholder text as well as growing by height (it turns into a UITextView). |
|||
|
|
|
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 :) |
||||
|
|
|
Simpler and still accounting for some text entered by the user at some point
on viewDidLoad, set it to YES (or DidMoveToSuperview, or awakeFromNib) then, on - (BOOL) textView:(UITextView*)textView shouldBeginEditing
|
|||
|
|
|
Sorry to add another answer, But I just pulled something like this off and this created the closest-to-UITextField kind of placeholder. Hope this helps someone.
|
|||
|
|
|
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. |
|||
|
|
put a label over the textview. |
|||
|
|
|
You can use one of existents components. I did that: https://github.com/CassiusPacheco/CPTextViewPlaceholder |
|||
|
|
TVComment is the property that holds the textView in question. This will do the trick. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.