I want to have a thin gray border around UITextView, I have gone through documentation but couldn't find any property there. Please help.

link|improve this question

46% accept rate
feedback

5 Answers

up vote 36 down vote accepted
#import <QuartzCore/QuartzCore.h>

....


view.layer.borderWidth = 5.0f;
view.layer.borderColor = [[UIColor grayColor] CGColor];
link|improve this answer
1  
This just has no explanation whatsoever with it, where is this code supposed to go, what is view supposed to be...etc. – Dan F May 6 '11 at 15:01
11  
I didn't think it really needed much explaining, view is the UITextView, and the code goes wherever you'd set up the view (awakeFromNib or viewDidLoad are two possible places). Since there was no code given there's no way to give good context in response. – Kendall Helmstetter Gelner May 6 '11 at 16:10
I can't get this to work with iOS5 – Tyilo Jan 22 at 4:44
It should work just fine in iOS5. Does the code compile, or do you simply not see the border? – Kendall Helmstetter Gelner Jan 22 at 19:43
@Dan F , I think it is more than you expect. +1 for him. – Gajendra K Chauhan Mar 30 at 7:06
feedback

Works great, but the color should be a CGColor, not UIColor:

view.layer.borderWidth = 5.0f;
view.layer.borderColor = [[UIColor grayColor] CGColor];
link|improve this answer
1  
#import <QuartzCore/QuartzCore.h> – Merlin Mar 3 '11 at 11:54
2  
And add QuartzCore framework to your project too. – Matt Connolly Mar 7 '11 at 5:43
feedback

add

view.layer.cornerRadius = 8; 

for rounded corners

link|improve this answer
feedback

I don't think there is a way to do it in the SDK. Probably easiest if you just use an image and position it correctly to make it appear as though the text view has a border.

This forum thread might also be of use: http://www.iphonedevsdk.com/forum/iphone-sdk-development/4864-adding-border-uitextview.html

link|improve this answer
feedback

You cant do it...A good option might be to draw your border (or use an image) of your border and put a UITextView on top of it with transparent background, this will make it seem as though the textview itself has the borders..also you can use a tableview and have a UITexstView in your tableview cell which will cause the textview to seem as it has a gray border but its really the tableviewcell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.