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.
Xcode 4.3 では、.xib に配置された UIView オブジェクトを選択すると、「Clear Graphics Context」というオプションがあることがわかります。どういう意味ですか?
このチェックボックスをオンにすると、iOSは、実際にオブジェクトを描画する前に、オブジェクトで覆われている領域全体を透明な黒で描画します。それが必要になることはめったにありません。
IOS 5開発の開始:IOS SDKの調査、81ページ、段落3。
"clear context"UIView の DrawRect 関数を開始する前に、OpenGL を適用します。
"clear context"
glClearColor(0, 0, 0, 0); glClear(GL_COLOR_BUFFER_BIT);