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

I have a login view which has a subview which has a UIActivityView and a UILabel saying "Signing In…". This subview has corners which aren't "rounded". How can I make them round?

Is there anyway to do it using IB?

share|improve this question
6  
Doing something like this in IB would require a pre-rendered image with rounded corners – Ed Marty Oct 2 '09 at 21:30
Here is a method to round the corners of a UIView. The cool part about it is that you can select which corners you want rounded up: Rounding up the corners of a UIView – pabloruiz55 Sep 10 '12 at 11:09
2  
Not necessarily @ed-marty, This answer from @Gujamin deserves some more credit as it shows how to apply the cornerRadius property to the table using Interface Builder only, without having to use either pre-rendered images or set it in the code. – Daniel Skinner Dec 27 '12 at 16:06

10 Answers

up vote 443 down vote accepted

Try this

#import <QuartzCore/QuartzCore.h>

...

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

Note: If you are trying to apply rounded corners to a UIViewController's view, it should not be applied in the view controller's constructor, but rather in -viewDidLoad, after view is actually instantiated.

share|improve this answer
163  
You have to #import <QuartzCore/QuartzCore.h> first. – digdog Oct 2 '09 at 15:04
4  
Note that property only exists in iPhone 3.0, not earlier versions. – Kendall Helmstetter Gelner Oct 2 '09 at 19:26
13  
Related note: anyone interested in more visual goodies (i.e. shadow) to easily apply to a UIView should check out the CALayer class reference. Most of it is as easy as setting one or two property values, like the above answer: developer.apple.com/mac/library/documentation/GraphicsImaging/… – Justin Searls Feb 20 '10 at 17:05
6  
@Ben Collins (or anyone else who has this problem), make sure your view has "clip subviews" set. You can check this in interface builder. – zem Sep 9 '10 at 20:00
1  
Thank you very much! – Sasho Sep 17 '10 at 8:25
show 11 more comments

A different approach then the one Ed Marty did:

#import <QuartzCore/QuartzCore.h>

[v.layer setCornerRadius:25.0f];
[v.layer setMasksToBounds:YES];

You need the setMasksToBounds for it to load all the objects from IB... i got a problem where my view got rounded, but did not have the objects from IB :/

this fixed it =D hope it helps!

share|improve this answer
13  
how is it different? other than not using dot syntax? – user102008 Jul 26 '11 at 1:15
2  
[v.layer setMasksToBounds:YES]; \n this line is magic, it solves my big problem – Cullen SUN Feb 10 '12 at 15:57

You can also use the "User Defined Runtime Attributes" feature of interface builder to set the key path layer.cornerRadius to a value. Make sure you include the QuartzCore library though.

This trick also works for setting layer.borderWidth however it will not work for layer.borderColor as this expects a CGColor not a UIColor.

share|improve this answer
5  
This should be the best answer really as the question was whether it was possible to do in Interface Builder. – Daniel Skinner Dec 27 '12 at 16:09
1  
This is a really tidy way to do it, especially when you have separate XIB files for iPad support in a Universal App. There is no need to check for iPad in the code and apply it programmatically. – Daniel Skinner Dec 27 '12 at 16:12
1  
@DanielSkinner: Agreed. But this still remains the best as it is answering the asked question completely by taking Interface builder into consideration. – Yogi Mar 11 at 6:48

Another method is here.

http://www.iphonedevsdk.com/forum/tutorial-requests/18807-rounded-corners-uiview.html#post85415

share|improve this answer
1  
one more cocoabugs.blogspot.com/2010/08/… – jeeva Aug 24 '10 at 8:31

As described in this blog post, here is a method to round the corners of a UIView:

+(void)roundView:(UIView *)view onCorner:(UIRectCorner)rectCorner radius:(float)radius
{
    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view.bounds
                                                   byRoundingCorners:rectCorner
                                                         cornerRadii:CGSizeMake(radius, radius)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = view.bounds;
    maskLayer.path = maskPath.CGPath;
    [view.layer setMask:maskLayer];
    [maskLayer release];
}

The cool part about it is that you can select which corners you want rounded up.

share|improve this answer
2  
Rather than just providing a link to an external site, we prefer that answers be self-contained here, so I brought the relevant code from the linked blog post into your answer. People can visit the blog post for more detail, but this make sure that the content will survive if the post in question goes away. Also, you posted this answer to several different questions that didn't really ask the same thing. Those were removed, and one question was closed as a duplicate of this one. We like to have answers crafted to match each question. – Brad Larson Sep 10 '12 at 20:57
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(20, 50, 200, 200)];

view.layer.backgroundColor = [UIColor whiteColor].CGColor;
view.layer.cornerRadius = 20.0;
view.layer.frame = CGRectInset(v.layer.frame, 20, 20);

view.layer.shadowOffset = CGSizeMake(1, 0);
view.layer.shadowColor = [[UIColor blackColor] CGColor];
view.layer.shadowRadius = 5;
view.layer.shadowOpacity = .25;

[self.view addSubview:view];
[view release];
share|improve this answer
1  
This is no different to the other answers on this thread. – jrturton May 23 '12 at 12:00
Applying setMasksToBounds is important. Setting a background colour and drop shadow is not. – Daniel Skinner Dec 27 '12 at 16:16

You need to first import header file <QuartzCore/QuartzCore.h>

 #import QuartzCore/QuartzCore.h>

[yourView.layer setCornerRadius:8.0f];
yourView.layer.borderColor = [UIColor redColor].CGColor;
yourView.layer.borderWidth = 2.0f;
[yourView.layer setMasksToBounds:YES];

Don't miss to use -setMasksToBounds , otherwise the effect may not be shown.

share|improve this answer

Please import Quartzcore framework then you have to set setMaskToBounds to TRUE this the very important line.

Then: [[yourView layer] setCornerRadius:5.0f];

share|improve this answer

You can also use an image:

UIImage *maskingImage = [UIImage imageNamed:@"bannerBarBottomMask.png"];
CALayer *maskingLayer = [CALayer layer];
maskingLayer.frame = CGRectMake(-(self.yourView.frame.size.width - self.yourView.frame.size.width) / 2
                                , 0
                                , maskingImage.size.width
                                , maskingImage.size.height);
[maskingLayer setContents:(id)[maskingImage CGImage]];
[self.yourView.layer setMask:maskingLayer];
share|improve this answer

Not need to import "QuartzCore/QuartzCore.h"

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.