I have an app in the app store with nearly 5-star rating, but when iOS 6 came out, some of the views in in the app's main view hierarchy started blinking. This happens on the app that was in the store (I removed it when iOS6 came out) as well as in the simulator.
I've spent about 14 hours, trying 100 things, to debug this in Xcode, but can't get any traction on it. Subviews disappear and reappear like there's a gremlin randomly setting the visible property off and on for each of them up to 10 times per second, in between longer periods where everything is normal.
The main interface is a dial that the user can rotate, where I use 3d transforms on a layer to rotate it. The only pattern I've found is that 3 of the 4 disappearing subviews vanish together, as if locked as one, when the dial is rotated to certain discrete positions.
The 4th disappearing subview should be a static image and it's blinking on and off with no discernible pattern.
I'd love any thoughts, tips as to how I can debug this. It's not a memory warning, and executing additional [setNeedsToDisplay] seems to have no effect. I am starting to think Apple broke something in iOS6, but I can't find anyone else talking about these issues.
Here is a breakdown of the main view's hierarchy of subviews and CALayers:
Try manually setting your view layers z-property to ensure the hierarchy is what you need.