I am trying to accomplish some complex effects during my UIView rotation, and I'm using the first half/second half method of rotation animations.
However, when my second half starts, I'd like to set some properties on my subviews (alpha, frame) etc, from which to begin animating in the second half. But setting any of these properties of course causes them to be animated. I'd like to say, set the alpha to 0.0, and THEN say, "ok, now animate it to 1.0 throughout the rest of the rotation."
Note that I can't set this property before the whole rotation; I want to affect its immediate value partway through.
Can this be done?
Thanks.