Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何向 UIImageView 添加一个看起来像 X 的红色笔触。
我想在 UIImageView 中添加 2 条对角红线,有没有办法使用图层或蒙版以编程方式进行?(不在drawRect中)
使用CAShapeLayer带有 X 形状的 a 作为其路径。根据您绘制路径的方式,您可能需要设置nil填充颜色(因为不应填充仅由两条交叉线组成的路径)。
CAShapeLayer
nil
将形状图层添加为图像视图的子图层。