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.
CALayer の存在目的については、少し慣れてきました。プロパティをUIViewに入れてみませんか?
ありがとう。
CALayer は、UIView とはまったく異なる「もの」を表します。CALayer は、それ自体の描画と、そのために必要な情報のカプセル化のみを扱います。一方、ビューは、それ自体を描画するために使用する 1 つまたは複数のレイヤーを所有します。ただし、ビューには、画面上の表現とは関係のない他の多くの機能とプロパティがあります。
Apple のドキュメントを調べて、オブジェクト指向コーディングに関する本を手に取ることをお勧めします。