• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 无法让 UIBezierPath 应用 linecapstyle/linejoinstyle

[复制链接]
菜鸟教程小白 发表于 2022-12-12 23:10:55 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试在我的 UIView 子类中绘制一个 V 形。出现 V 形,但我应用的线帽样式和线连接样式未反射(reflect)在输出中。

 - (UIBezierPath *)chevronCGRect)frame
{
    UIBezierPath* bezierPath = [[UIBezierPath alloc]init];
    [bezierPath setLineJoinStyle:kCGLineJoinRound];
    [bezierPath setLineCapStyle:kCGLineCapRound];
    [bezierPath moveToPoint:CGPointMake(CGRectGetMinX(frame), CGRectGetMaxY(frame))];
    [bezierPath addLineToPoint:CGPointMake(CGRectGetMaxX(frame), CGRectGetMaxY(frame) * 0.5)];
    [bezierPath addLineToPoint:CGPointMake(CGRectGetMinX(frame), CGRectGetMinY(frame))];

    return bezierPath;
}
-(void)drawRectCGRect)rect{
    [self.color setStroke];
    UIBezierPath *chevronPath = [self chevron:rect];
    [chevronPath setLineWidth:self.strokeWidth];
    [chevronPath stroke];
}

根据 Apple 的文档,他们说“在配置 Bezier 路径的几何形状和属性后,您可以使用 stroke 和 fill 方法在当前图形上下文中绘制路径”,但这在这里不起作用 --- 我'已经尝试移动 setLineJoinStylesetLineCapStyle 语句(例如,在添加 LineToPoint 后,在 drawRect 内),似乎无论我调用它们多少次它都不是在职的。任何想法出了什么问题?



Best Answer-推荐答案


您的代码正在应用这些样式,您只是看不到它们,因为您的 V 形一直被绘制到 View 的边缘,然后被剪裁。要查看 chevron 的末端,请将您对 chevron 方法的调用更改为此,

UIBezierPath *chevronPath = [self chevron:CGRectInset(rect, 10, 10)];

10 点是否足够插入将取决于您的线有多宽,因此您可能需要增加它。

关于ios - 无法让 UIBezierPath 应用 linecapstyle/linejoinstyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24352719/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap