I know that in iOS 3.0+ I can use
label.layer.cornerRadius = xxx;
to round all four corners of a UILabel (as a UIView subclass), but I wa
I have checked the Class Reference for UIView & UILabel and its layers, but could not find any way to do this with the means given by the iOS.
You could do one thing, create a UIView
& apply rounded corners to it. Now add a UILabel
as a subview to this UIView & position it in such a way so that the bottom 2 rounded corners are covered by the label. This way you get the effect you need...