1
可能重複:
How to draw a rounded rectangle in Core Graphics/Quartz 2D?繪製一個圓角矩形編程
我希望通過編程繪製一個圓角矩形我覆蓋的UIView,
如何將我處理這個?
可能重複:
How to draw a rounded rectangle in Core Graphics/Quartz 2D?繪製一個圓角矩形編程
我希望通過編程繪製一個圓角矩形我覆蓋的UIView,
如何將我處理這個?
NSBezierPath有一個特殊的+bezierPathWithRoundedRect:xRadius:yRadius:
,請檢查文檔。
NSBezierPath *path =
[NSBezierPath bezierPathWithRoundedRect:NSMakeRect(...)
xRadius:3.0f
yRadius:3.0f];
[path fill];