0
我想imageview淡入淡出,然後完全隱藏。UImagview褪色,然後隱藏
這裏是我的代碼
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"];
theAnimation.duration=1.0;
theAnimation.fromValue=[NSNumber numberWithFloat:1.0];
theAnimation.toValue=[NSNumber numberWithFloat:0.0];
[flowerImageView.layer addAnimation:theAnimation forKey:@"animateOpacity"];
這是正常工作,但是當值變爲0.0 ImageView的應該不會再次出現
它淡出之後。你只需從超級視圖中刪除它(這是UIImageView)。 [imageView removeFromSuperview]。 – jamil
但我怎麼會知道這個值變成了0 – user2185354
看看這裏http://stackoverflow.com/a/11487269/1328096。 – jamil