I'm trying to apply a fade to an UIView I created programmatically on the top of another.
[UIView animateWithDuration:0.5 animations:^(void) {
[self.view setAlpha:0];
}
completion:^(BOOL finished){
[self.view removeFromSuperview];
}];
The finished event is called properly after exactly 0.5 seconds, but I don't see any fade (I should see the UIView on the bottom).
If instead of using the alpha, I move away the UIView it works (I see the bottom UIView while the top UIView slides away), so it seems to be a problem related to alpha, but I can't figure out what's wrong!
[UIView animateWithDuration:0.5 animations:^(void) {
CGRect o = self.view.frame;
o.origin.x = 320;
self.view.frame = o;
}
completion:^(BOOL finished){
[self.view removeFromSuperview];
}];
I used alpha animations previously and they works in this way usually...
Try setting
opaque
toNO
explicitly. I had the same problem and setting that solved my problem. Apparently, opaque views just don't seem to play well with alpha.Credit goes to Hampus Nilsson's comment though.
I had exactly the same problem, and none of the suggestions worked for me. I overcame the problem by using the layer opacity instead. This is the code for showing the layer (using Xamarin, but you'll get the idea):
And this is for fading out the same zoomView
One more piece of the puzzle. When you're animating constraints, you can set the new constraint constants outside of an animation block and then call
layoutIfNeeded
inside the animation.With view alphas, these need to be set directly inside the animation block.
Change this:
to
This will work right, and your fading will be nicer, because of
options:UIViewAnimationOptionCurveEaseInOut
.I experience same issue in my case its because of thread So i end up with write animation block in main thread.
I ran into the exact problem. In my case, I wanted the view to be hidden at first, so I set
hidden
totrue
. I thought changing thealpha
value changeshidden
property automatically, but that wasn't the case.So, if you want the view to be hidden at first, set its
alpha
to0
.