我正在尝试绘制一个自定义按钮框架,如下所示:
UIBezierPath *stroke = [UIBezierPath bezierPathWithRoundedRect:self.bounds
cornerRadius:RECT_CORNECR_RADIUS];
[stroke stroke];
但由于某种原因,拐角曲线看起来比侧面更思考。如果您查看 UIButton 的默认框架,它非常统一。A 是 UIButton,B 是自定义按钮。
任何想法如何使它更像 UIButton。