In Xcode 4.3, when you choose some UIView object placed in .xib, you can find out there is an option saying "Clear Graphics Context". What does it means?
When it is checked, iOS will draw the entire area covered by the object in transparent black before it actually draws the object.
It is rarely needed.
Beginning IOS 5 Development: Exploring the IOS SDK, page 81, paragraph3.
It will apply an OpenGL "clear context"
before starting the DrawRect function of the UIView:
glClearColor(0, 0, 0, 0); glClear(GL_COLOR_BUFFER_BIT);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With