Obaid
Obaid

Reputation: 197

CGContext Delete Path

How do I remove a path when the path with different color draws on the top of that previous path using CGContext?

Upvotes: 2

Views: 1959

Answers (1)

Kevin Grant
Kevin Grant

Reputation: 5431

CGContextBeginPath() always throws away the previous path in the process of creating a new one.

Upvotes: 4

Related Questions