在Xcode 4.3中,当您选择放置在.xib中的某个UIView对象时,您会发现有一个选项说“清除图形上下文”。这意味着什么?
答案 0 :(得分:37)
选中后,iOS将绘制整个区域 物体在实际绘制物体之前用透明的黑色。
它是 很少需要。
Beginning IOS 5 Development: Exploring the IOS SDK, page 81, paragraph3.
答案 1 :(得分:10)
在启动UIView的DrawRect函数之前,它将应用OpenGL "clear context"
:
glClearColor(0, 0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT);