美文网首页
UIBezierPath学习总结

UIBezierPath学习总结

作者: hehc08 | 来源:发表于2017-09-22 10:56 被阅读0次

    方法

    //标准初始化方法

    • (UIBezierPath *)bezierPath

    //根据一个矩形画曲线

    • (UIBezierPath*)bezierPathWithRect:(CGRect)rect

    //根据矩形框的内切圆画曲线

    • (UIBezierPath*)bezierPathWithOvalInRect:(CGRect)rect

    //根据矩形画带圆角的曲线

    • (UIBezierPath*)bezierPathWithRoundedRect:(CGRect)rect cornerRadius:(CGFloat)cornerRadius

    //在矩形中,可以针对四角中的某个角加圆角
    (corners:用来指定需要加圆角的位置,该参数为枚举值,具体枚举在下文列出
    cornerRadii:参数用来设置圆角的大小)

    待续。。。

    相关文章

      网友评论

          本文标题:UIBezierPath学习总结

          本文链接:https://www.haomeiwen.com/subject/txoxextx.html