可能重复:
How to draw a rounded rectangle in Core Graphics / Quartz 2D?
我想以编程方式为我的覆盖UIView绘制一个圆角矩形,
我该如何处理?
答案 0 :(得分:3)
NSBezierPath有一个特殊的+bezierPathWithRoundedRect:xRadius:yRadius:
,请查看文档。
NSBezierPath *path =
[NSBezierPath bezierPathWithRoundedRect:NSMakeRect(...)
xRadius:3.0f
yRadius:3.0f];
[path fill];