Ask Your Question
4

How to keep a UIBezierPath on top of a CAShapeLayer?

asked 2023-05-30 11:50:16 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-05-30 11:54:02 +0000

david gravatar image

To keep a UIBezierPath on top of a CAShapeLayer, you can add the UIBezierPath as a sublayer of the CAShapeLayer.

Here's an example:

let shapeLayer = CAShapeLayer()
// set the properties of the shape layer

let bezierPath = UIBezierPath(rect: CGRect(x: 0, y: 0, width: 100, height: 100))
let pathLayer = CAShapeLayer()
pathLayer.path = bezierPath.cgPath
// set the properties of the path layer

shapeLayer.addSublayer(pathLayer)

In this example, the UIBezierPath is created and added as a sublayer of the CAShapeLayer. The path layer is set to use the bezier path, and both layers can have their properties set independently.

Make sure to add the path layer as a sublayer of the shape layer to keep it on top.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-30 11:50:16 +0000

Seen: 18 times

Last updated: May 30 '23