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 am trying to round only the top right and left corners of my tableview. I am using the code below and it only seems to be rounding the top left corner...

    CAShapeLayer *topLayer = [CAShapeLayer layer];
UIBezierPath *roundedPath = 
[UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerTopRight | UIRectCornerTopLeft cornerRadii:CGSizeMake(9.f, 9.0f)];    
   topLayer.path = [roundedPath CGPath];
share|improve this question
stackoverflow.com/a/5826698/855738 I used this answer to do pretty much the same thing – BBog Jun 12 '12 at 21:19

1 Answer

up vote 1 down vote accepted
CAShapeLayer *topLayer = [CAShapeLayer layer];
UIBezierPath *roundedPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds
    byRoundingCorners:(UIRectCornerTopRight | UIRectCornerTopLeft)
    cornerRadii:CGSizeMake(9.f, 9.0f)];    
topLayer.path = [roundedPath CGPath];

NOTICE: (UIRectCornerTopRight | UIRectCornerTopLeft)

share|improve this answer
thank you for your answer, but it didn't change anything. – Luke Jun 12 '12 at 19:29
   
do you have your topLayer.frame = tableview.bounds? – mkral Jun 12 '12 at 19:33
No I am drawing custom table cells and then trying to make a custom selection background on them to fit the cell. So this code is in my - (void)setSelected:(BOOL)selected animated:(BOOL)animated function on my customTableCell. – Luke Jun 12 '12 at 19:35

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.