怎么绘制一个圆角矩形 ios中用uibezierpath bezierpathwithroundedrect
1个回答
2014-12-10 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517199
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
- (void)drawRect:(CGRect)rect
{
// draw a box with rounded corners to fill the view -
UIBezierPath *roundedRect = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:5.0f];
[[UIColor colorWithWhite:0.8 alpha:0.5] setFill];
[roundedRect fillWithBlendMode:kCGBlendModeNormal alpha:1];
}
UIBezierPath对象是CGPathRef数据类型的封装。path如果是基于矢量形状的,都用直线和曲线段去创建。我们使用直线段去创建矩形和多边形,使用曲线段去创建弧(arc),圆或者其他复杂的曲线形状。
UIBezierPath 的使用介绍
详细的介绍了UIBezierPath ,这里我就不多说了!
[java]
// 通过<span style="font-family: 'Microsoft YaHei'; ">UINib 加载xib资源文件</span>
UINib *hoverViewXib = [UINib nibWithNibName:@"xxxx" bundle:nil];
[hoverViewXib instantiateWithOwner:self options:nil];
{
// draw a box with rounded corners to fill the view -
UIBezierPath *roundedRect = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:5.0f];
[[UIColor colorWithWhite:0.8 alpha:0.5] setFill];
[roundedRect fillWithBlendMode:kCGBlendModeNormal alpha:1];
}
UIBezierPath对象是CGPathRef数据类型的封装。path如果是基于矢量形状的,都用直线和曲线段去创建。我们使用直线段去创建矩形和多边形,使用曲线段去创建弧(arc),圆或者其他复杂的曲线形状。
UIBezierPath 的使用介绍
详细的介绍了UIBezierPath ,这里我就不多说了!
[java]
// 通过<span style="font-family: 'Microsoft YaHei'; ">UINib 加载xib资源文件</span>
UINib *hoverViewXib = [UINib nibWithNibName:@"xxxx" bundle:nil];
[hoverViewXib instantiateWithOwner:self options:nil];
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询