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.

Good day!

Im trying to make my view (view in main view) make rounded corner. Im doing like this, but it doesn't work. Any ideas?

self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
    // Custom initialization
    currenView = [[UIView alloc] init]; 

    UIBezierPath *maskPath;
    maskPath = [UIBezierPath bezierPathWithRoundedRect:currenView.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(30.0, 30.0)];

    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = currenView.bounds;
    maskLayer.path = maskPath.CGPath;
    currenView.layer.mask = maskLayer;


}
return self;
share|improve this question
1  
You can make it simply by using cornerRadius property of layer. – sanjit shaw Feb 1 at 13:46

3 Answers

Try something like this:

view.layer.cornerRadius = 5.0;
view.layer.masksToBounds = YES;

for shadow:

view.layer.shadowColor = [UIColor blackColor].CGColor;
view.layer.shadowOffset = CGSizeMake(1.0f, 1.0f);
view.layer.masksToBounds = NO;
view.layer.shadowRadius = 5.0f;

Make sure to import <QuartzCore/QuartzCore.h>

share|improve this answer
doesn't work :( can it be something with using ARC? – Pavel Feb 1 at 13:48
I've noticed you're not doing anything with the UIView you're allocating - currenView isn't going anywhere – Stavash Feb 1 at 13:50
After this line add view.clipsToBounds = YES – CRDave Feb 1 at 13:50
1  
So why are you instantiating a new one? – Stavash Feb 1 at 13:53
1  
If the view is in IBOutlet then why are using "alloc , init"? – sanjit shaw Feb 1 at 13:54
show 12 more comments

Stavash's solution seems to be correct, I have used it several times. If you are looking for an alternative or insist on using masklayers, see this answer: http://stackoverflow.com/a/13163693/936957

share|improve this answer

Your view has no size. its w and h is 0. Try something like,

currentView = [[UIView alloc] initWithFrame:CGRectMake(0,0 200,200)]; 

and then apply

currentView.layer.cornerRadius = 8.0;
currentView.layer.masksToBounds = YES;
currentView.layer.borderWidth = 1.0; 
share|improve this answer
view.layer.cornerRadius = 5.0; view.layer.masksToBounds = YES; view.layer.shadowColor = [UIColor blackColor].CGColor; view.layer.shadowOffset = CGSizeMake(1.0f, 1.0f); view.layer.masksToBounds = NO; view.layer.shadowRadius = 5.0f; if i do like this corners are rounded but there is no shadow. i think the problem is in view.layer.masksToBounds = NO; – Pavel Feb 1 at 14:15
for shadow follow stavash's solution – karim Feb 1 at 14:17

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.