菜鸟教程小白 发表于 2022-12-13 11:19:54

ios - 在Objective C,iOS中创建像图像一样的标签


                                            <p><p>如何在 iOS (Objective-c) 中创建如下图所示的标签?</p>

<p> <a href="/image/ZPOl2.png" rel="noreferrer noopener nofollow"><img src="/image/ZPOl2.png" alt="sample label"/></a> </p>

<p>我的问题不在于所有角落,因为我可以通过编写如下代码来舍入左上角和右下角:</p>

<pre class="lang-c prettyprint-override"><code>CAShapeLayer *maskLayer = ;
maskLayer.path = [UIBezierPath bezierPathWithRoundedRect:self.customView.bounds
                                       byRoundingCorners:UIRectCornerBottomRight | UIRectCornerTopLeft
                                             cornerRadii:(CGSize){7.0, 7.0}].CGPath;
self.customLabel.layer.mask = maskLayer;
</code></pre>

<p>结果是这样的:
<a href="/image/wlHzr.png" rel="noreferrer noopener nofollow"><img src="/image/wlHzr.png" alt="my sample label"/></a> </p>

<p>现在如何编写右上角和左下角的代码以达到目标?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong>更新:</strong></p>

<p>我没有在我的方程式中使用高度作为变量,它可能会影响结果。</p>

<p>更好的结果</p>

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

<pre><code>- (void)drawRect:(CGRect)rect
{
    CGFloat curveWidth = 40;
    CGFloat width = self.frame.size.width;
    CGFloat height = self.frame.size.height;

//    UIEdgeInsets insets = {0, curveWidth, 0, curveWidth};
//    ;

    UIBezierPath *path = ;
    UIColor *fillColor = ;
    ;

    ;
    ;

    ;
    ;

    ;
    ;

    ;
}
</code></pre>

<p><strong>原答案:</strong></p>

<p>我为你写了代码。请按照以下步骤操作:</p>

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

<ol>
<li>通过子类化创建自定义 UILabel。 (代码如下)</li>
<li>使用界面生成器将 UILabel 添加到您的 View 中。</li>
<li>添加您的约束。</li>
<li>在标识符检查器选项卡中,将类更改为您的。</li>
</ol>

<p>--</p>

<pre><code>@implementation CurvedLabel

- (id)initWithCoder:(NSCoder *)aDecoder
{
    if (self = )
    {

    }
    return self;
}

- (void)drawRect:(CGRect)rect
{
    CGFloat curveWidth = 30;
    CGFloat width = self.frame.size.width;
    CGFloat height = self.frame.size.height;

//    UIEdgeInsets insets = {0, curveWidth, 0, curveWidth};
//    ;

    UIBezierPath *path = ;
    UIColor *fillColor = ;
    ;

    ;
    ;

    ;
    ;

    ;
    ;

    ;
}

@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在Objective C,iOS中创建像图像一样的标签,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31701133/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31701133/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在Objective C,iOS中创建像图像一样的标签