Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

6 Answers

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

....


view.layer.borderWidth = 5.0f;
view.layer.borderColor = [[UIColor grayColor] CGColor];
share|improve this answer
3  
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
31  
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 '12 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 '12 at 19:43
1  
Did you import QuartzCore? You could also try getting out a CALayer from self.myView and setting borderWidth on that. It's settable. – Kendall Helmstetter Gelner Jul 13 '12 at 22:36
show 3 more comments

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

view.layer.borderWidth = 5.0f;
view.layer.borderColor = [[UIColor grayColor] CGColor];
share|improve this answer
3  
#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

add

view.layer.cornerRadius = 8; 

for rounded corners

share|improve this answer

I add UIImageView as a subview of the UITextView. This matches the native border on a UITextField, including the gradient from top to bottom:

enter image description here

textView.backgroundColor = [UIColor clearColor];
UIImageView *borderView = [[UIImageView alloc] initWithFrame: CGRectMake(0, 0, textView.frame.size.width, textView.frame.size.height)];
borderView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
UIImage *textFieldImage = [[UIImage imageNamed:@"TextField.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(15, 8, 15, 8)];
borderView.image = textFieldImage;
[textField addSubview: borderView];
[textField sendSubviewToBack: borderView];

These are the png images I use, and a jpg representation:

@1x

@2x

enter image description here

share|improve this answer
Good solution. Are these images yours? Are we free to use them? – James Webster Dec 6 '12 at 12:57
+1, great to share the background image :) – Abduliam Rehmanius Dec 21 '12 at 12:19
These images are 'modeled' on those used in Apple's own apps. In truth I extracted them and made very few, if any, changes. Use at your own risk. The goal was to mimic the native look and feel so it is hard to come up with something that looks much different. For what it's worth, I have shipped and had approved apps using this image without issue. – Ben Packard Dec 21 '12 at 16:13
The png image files appear to have been removed - I don't intend to constantly update this with a new image location so my apologies if the jpg doesn't work for you. I can re-upload as and when requested via comment. – Ben Packard Dec 21 '12 at 16:14
1  
With the image attached this works best: code resizableImageWithCapInsets:UIEdgeInsetsMake(28, 14, 28, 14) – RefuX Mar 5 at 1:04

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

share|improve this answer

I solved this problem in storyboard by putting a fully disabled UIButton behind the UITextView and making the background color of the UITextView clearColor. This works without requiring extra code or packages.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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