Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to set cornerRadius for only top-left and top-right corner of a UIView?

EDIT:

I tried the following, but it end up not seeing the view anymore. Anything wrong with the code below?

UIView *view = [[UIView alloc] initWithFrame:frame];

CALayer *layer = [CALayer layer];
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:frame byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(3.0, 3.0)];
layer.shadowPath = shadowPath.CGPath;
view.layer.mask = layer;
share|improve this question
3  
After your edit, three things to fix: (1) the rounded path should be based on view.bounds, not frame, (2) the layer should be a CAShapeLayer, not CALayer; (3) set the layer's path, not shadowPath. – Kurt Revis Apr 16 '12 at 0:32
that works! thanks Kurt! – tom Apr 16 '12 at 0:37

4 Answers

up vote 15 down vote accepted

Not directly. You will have to:

  1. Create a CAShapeLayer
  2. Set its path to be a CGPathRef based on view.bounds but with only two rounded corners (probably by using +[UIBezierPath bezierPathWithRoundedRect:byRoundingCorners:cornerRadii:])
  3. Set your view.layer.mask to be the CAShapeLayer
share|improve this answer
4  
Be warned this will hurt performance if you do it on more than just a couple of views... – PsychoDad Jun 18 '12 at 21:15

I am not sure why your solution did not work, but the following code is working for me. Create a bezier mask and apply it to your view. In my code below I was rounding the bottom cells of the _backgroundView with a radius of 3 pixels. self is a custom UITableViewCell:

UIBezierPath *maskPath;
maskPath = [UIBezierPath bezierPathWithRoundedRect:_backgroundImageView.bounds byRoundingCorners:(UIRectCornerBottomLeft | UIRectCornerBottomRight) cornerRadii:CGSizeMake(3.0, 3.0)];

CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.bounds;
maskLayer.path = maskPath.CGPath;
_backgroundImageView.layer.mask = maskLayer;
[maskLayer release];
share|improve this answer
2  
+1 Works perfect! – Lindemann Dec 15 '12 at 19:37
1  
+1 Works like a charm, thanks. – saeros Jan 8 at 15:33

The easiest way would be to make a mask with a rounded corner layer.

CALayer *maskLayer = [CALayer layer];
maskLayer.frame = CGRectMake(0,0,maskWidth ,maskHeight);
maskLayer.contents = (__bridge id)[[UIImage imageNamed:@"maskImageWithRoundedCorners.png"] CGImage];

aUIView.layer.mask = maskLayer;

And don't forget to:

#import <QuartzCore/QuartzCore.h>
share|improve this answer

The best way to do this programmatically would be to create a UIView over the top part of the UIView that has the rounded corners. Or you could hide the top underneath something.

share|improve this answer
1  
Why is this downvoted? It's a quick, effective solution – Spencer Williams Oct 31 '12 at 17:30

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.