Reputation: 197
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
Reputation: 5431
CGContextBeginPath()
always throws away the previous path in the process of creating a new one.
Upvotes: 4