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 对象时,您会发现有一个选项说“清除图形上下文”。这是什么意思?
当它被选中时,iOS 会在实际绘制对象之前将对象覆盖的整个区域绘制为透明黑色。很少需要它。
开始 IOS 5 开发:探索 IOS SDK,第 81 页,第 3 段。
它将"clear context"在启动 UIView 的 DrawRect 函数之前应用 OpenGL:
"clear context"
glClearColor(0, 0, 0, 0); glClear(GL_COLOR_BUFFER_BIT);