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.
UIView を作成して imageView の上に置き、UIView の背景色を clearcolor に設定します。すべての描画はその UIView で行われます。ありがとう。
CGContextSetBlendMode(context, kCGBlendModeClear)消したい部分を描いてみましたか?画面全体 (またはその長方形の一部) をクリアしたい場合は、 でコンテキストをクリアするCGContextClearRectこともできます。
CGContextSetBlendMode(context, kCGBlendModeClear)
CGContextClearRect
ビューで setNeedsDisplay を呼び出し、次回 drawRect は線を描画せず、境界全体を clearColor で塗りつぶします