0
이미지 뷰가 희미 해지고 완전히 숨겨지기를 원합니다. 여기 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가되면 이미지 뷰 다시
페이드 아웃 한 후. superview (UIImageView)에서 제거하면됩니다. [imageView removeFromSuperview]를 클릭하십시오. – jamil
하지만 값이 0이되었다는 것을 어떻게 알 수 있습니까? – user2185354
여기를보세요 http://stackoverflow.com/a/11487269/1328096. – jamil