Question

I have a UIView that runs a transformation to simulate the wobble animation.

There is another UIImageView on top of this UIView that and I set its hidden flag to NO when the animation starts. For some reason the image doesnt show, on rare occasions it does.

Im not sure why this is happening. Maybe the UIView transformation does something to its layers?

Any help would be appreciated.

Was it helpful?

Solution

To make the UIImageView be infront of everything in that UIView you are transforming use

[UIView bringSubviewToFront:UIImageView];

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top