How to draw a rounded rectangle in Core Graphics / Quartz 2D?

后端 未结 9 1096
盖世英雄少女心
盖世英雄少女心 2020-11-29 18:15

I need to draw an outline for a rounded rectangle. I know I can make lines and arcs, but maybe there is also a function for rounded rects?

9条回答
  •  -上瘾入骨i
    2020-11-29 18:33

     UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:bubbleBounds cornerRadius:15.0];
     CGContextSetStrokeColorWithColor(context, [UIColor grayColor].CGColor);
     [bezierPath stroke];
    

提交回复
热议问题