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 have a rectangle image (jpg) and want to use it to fill the background of a button with rounded corner in xcode.

I wrote the following:

UIButton *button = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
CGRect frame = CGRectMake(x, y, cardWidth, cardHeight);
button.frame = frame;
[button setBackgroundImage:backImage forState:UIControlStateNormal];

However, the button I get with that approach doesn't have its corners rounded: it is instead a plain rectangle that looks exactly like my original image. How can I get instead an image with rounded corner to represent my button?

Thanks!

share|improve this question

2 Answers

up vote 61 down vote accepted

I think I got your problem, I tried the following solution with the UITextArea and I suppose this will work with UIButton as well.

first of all import this in your .m file -

#import <QuartzCore/QuartzCore.h>

and then in your loadView method add following lines

    yourButton.layer.cornerRadius = 10; // this value vary as per your desire
    yourButton.clipsToBounds = YES;

Hope this works for you and if yes do communicate.

share|improve this answer
Many thanks. Not only this is what I needed, but you answered my next question which was to figure out whether the corner radius could be adjusted. – double07 Feb 21 '11 at 22:57
Thanks a lot - especially for the clipsToBounds tip. – Chris Aug 1 '12 at 1:56
m happy it helped you.......... :) – devsri Aug 1 '12 at 6:46
Also works with the "User Defined Runtime Attributes" inspector – Avi Cherry May 7 at 8:43

An alternative answer which sets a border too (making it more like a button) is here ... How to set rectangle border for custom type UIButton

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.