UIBezierPath贝塞尔弧线常用方法记

UIBezierPath贝塞尔弧线常用方法记

前提是你 提交于 2021-02-20 02:57:28
//根据一个矩形画曲线 + ( UIBezierPath *)bezierPathWithRect:( CGRect )rect //根据矩形框的内切圆画曲线 + ( UIBezierPath *)bezierPathWithOvalInRect:( CGRect )rect //根据矩形画带圆角的曲线 + ( UIBezierPath *)bezierPathWithRoundedRect:( CGRect )rect cornerRadius:( CGFloat )cornerRadius //在矩形中,可以针对四角中的某个角加圆角 + ( UIBezierPath *)bezierPathWithRoundedRect:( CGRect )rect byRoundingCorners:( UIRectCorner )corners cornerRadii:( CGSize )cornerRadii 参数: corners :枚举值,可以选择某个角 cornerRadii :圆角的大小 //以某个中心点画弧线 + ( UIBezierPath *)bezierPathWithArcCenter:( CGPoint )center radius:( CGFloat )radius startAngle:( CGFloat )startAngle endAngle:(