iOS绘制实心圆空心圆、图片的裁剪并加边框. - 简书
2016年8月25日 - /** * 画空心圆 */ CGRect bigRect = CGRectMake(rect.origin.x + kBorderWith, rect.origin.y+ kBorderWith, rect.size.width - kBorderWith*2, rect...
iOS画圆、画线-布布扣-bubuko.com
2015年5月27日 - - (void)drawRect:(CGRect)rect { [super drawRect:rect]; CGRect frame = CGRectMake(50, 100, 100, 100); /*画填充圆 */ CGContextRef cont...
iOS画圆、画线 - M了个WX - 博客园
2015年5月27日 - iOS画圆、画线 UIView: - (void)drawRect:(CGRect)rect { [super drawRect:rect]; CGRect frame = CGRectMake(50, 100, 100, 100); /*画填充圆 */ ...