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のサブクラスを使用せずに、黒い背景で2つの異なる長方形を描画するにはどうすればよいCGContextですか?
UIView
CGContext
必要なバニラ UIView オブジェクトを適切な位置に追加し、背景色を好きなように設定します。
描画は CGContext で行われますが、それを制御することはできません。
または、独自のCALayerサブクラスを追加し、それをビューのレイヤーに設定して、そこに長方形を描画しますdrawInContext:。
drawInContext:
または、別のオブジェクトをビューのレイヤーのデリゲートとして設定し、デリゲート メソッドで描画しdrawLayer:inContext:ます。
drawLayer:inContext: