美文网首页
绘制图形

绘制图形

作者: 酷酷的哀殿 | 来源:发表于2016-10-07 21:28 被阅读94次
  • 绘制椭圆
@interface SunView : UIView

@end

@implementation SunView

- (void)drawRect:(CGRect)rect {
  [super drawRect:rect];
  UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:self.bounds];
  [[UIColor redColor] setFill];
  [path fill];
}

@end

相关文章

网友评论

      本文标题:绘制图形

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