Is it possible to covert CGRect into CGPathRef ? - Objective C

872 Views Asked by At

I have a CGRect based on that I want to make CGPathRef.

Is it doable in objective C?

1

There are 1 best solutions below

0
On
let rect = CGRect(x: 1, y: 2, width: 3, height: 4)
let path = CGPath(rect: bounds, transform: nil)