菜鸟教程小白 发表于 2022-12-13 05:39:18

ios - 如何使用 uibezierpath 绘制 uiview 的底部曲线?


                                            <p><p>我尝试使用 uibezierpath 在 UIimageview 上绘制底部曲线。我不知道该怎么做?</p>

<pre><code>    - (void)setMaskTo:(UIView*)view byRoundingCorners:
   (UIRectCorner)corners
   {
      UIBezierPath *rounded = [UIBezierPath
      bezierPathWithRoundedRect:view.bounds

      byRoundingCorners:corners

      cornerRadii:CGSizeMake(200.0, 200.0)];
      CAShapeLayer *shape = [ init];
      ;
      view.layer.mask = shape;
    }
</code></pre>

<p>我已经尝试过这样的 <a href="https://imgur.com/a/WKykdyU" rel="noreferrer noopener nofollow">https://imgur.com/a/WKykdyU</a> </p>

<p>我期望 <a href="https://imgur.com/a/BqETMlc" rel="noreferrer noopener nofollow">https://imgur.com/a/BqETMlc</a> 的输出</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这应该可以帮助你开始......</p>

<p> <a href="/image/sbb6B.png" rel="noreferrer noopener nofollow"><img src="/image/sbb6B.png" alt="enter image description here"/></a> </p>

<p>使用 <code>UIBezierPath</code>:</p>

<ul>
<li>移动到点<code>A</code></li>
<li>将四边形曲线添加到点 <code>B</code> 与控制点 <code>C</code></li>
<li>添加线到点<code>D</code></li>
<li>添加线到点<code>E</code></li>
<li>关闭路径</li>
</ul>

<p>这是一个简单的 <code>UIView</code> 子类:</p>

<pre><code>@implementation BottomCurveView

- (void)layoutSubviews {
    ;

    CGRect rect = self.bounds;
    CGFloat y = rect.size.height - 80.0;
    CGFloat curveTo = rect.size.height;

    UIBezierPath *myBez = ;
    ;
    ;
    ;
    ;
    ;

    CAShapeLayer *maskForPath = ;
    maskForPath.path = myBez.CGPath;
    ;
}

@end
</code></pre>

<p>这会生成上面 200 磅高的图像。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 uibezierpath 绘制 uiview 的底部曲线?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/57788503/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/57788503/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 uibezierpath 绘制 uiview 的底部曲线?