I am doing something a bit unusual. I'm trying to tint all the components in my application red (you may have seen some other postings from me about this, but this is something more specific). To do so, I'm intercepting all calls to CALayer's drawInContext: and after calling the original method, I composite red onto the layer using kCGBlendModeDarken (or kCGBlendModeMultipy). This works surprisingly well for most UI components. However, when I do this with UILabels, the previously transparent background becomes white (well, actually a red-tinted white). You can see what this looks like in this image of my toolbar
http://www.thinkastronomy.com/RedLabels.png
Note that the UIImages also aren't tinted, but that is the topic of another question.
So can anyone explain why the UILabel background would be made visible by this compositing? It seems to happen pretty much independent of the compositing mode. How can I prevent this?