gpt4 book ai didi

ios - 将三角形作为 subview 绘制到表格单元格的右角

转载 作者:可可西里 更新时间:2023-11-01 05:12:53 25 4
gpt4 key购买 nike

我想绘制一个三角形使用 CGRect 而不是 UIImageView 并将其作为 subview 添加到某些特定表格单元格的右角,类似于它在 WWDC 应用程序上的完成方式。

欢迎任何建议。 :)

WWDC App Screenshot

最佳答案

一个简单的方法是让不同的 UIImageView 包含一个彩色三角形,然后根据您设置的某些值/偏好选择不同的图像来显示。取自此处:Drawing a triangle in UIView

您需要做一些数学运算才能计算出正确的点,但这是绘制三角形的一般方法。您可以创建自己的 UIView 子类(称之为 CornerTriangle),然后将其添加到单元格中,同时设置其颜色以满足您的需要。

-(void)drawRect:(CGRect)rect
{
CGContextRef ctx = UIGraphicsGetCurrentContext();

CGContextBeginPath(ctx);
CGContextMoveToPoint (ctx, CGRectGetMinX(rect), CGRectGetMinY(rect)); // top left
CGContextAddLineToPoint(ctx, CGRectGetMaxX(rect), CGRectGetMidY(rect)); // mid right
CGContextAddLineToPoint(ctx, CGRectGetMinX(rect), CGRectGetMaxY(rect)); // bottom left
CGContextClosePath(ctx);

CGContextSetRGBFillColor(ctx, 1, 1, 0, 1);
CGContextFillPath(ctx);
}

关于ios - 将三角形作为 subview 绘制到表格单元格的右角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20461918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com