Reputation: 3926
I want to create a UIButton
same like UIBarButtonSystemItemDone
.
That is, my UIButton should looks like the following image
Can i make the same effects (rounded corner, shading of colors, size) on my UIButton?
Share your code please..
Upvotes: 0
Views: 920
Reputation: 26400
You can make a custom button and provide an image for it.
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:urImage forState:UIControlStateNormal];
Upvotes: 1