第13月第13天 iOS 放大消失动画
Posted lianhuaren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第13月第13天 iOS 放大消失动画相关的知识,希望对你有一定的参考价值。
1.
- (void) animate { [UIView animateWithDuration:0.9 animations:^{ CGAffineTransform transform = CGAffineTransformMakeScale(2.5, 2.5); self.countdownLabel.transform = transform; self.countdownLabel.alpha = 0; } completion:^(BOOL finished) { if (finished) { if (self.currentCountdownValue == 0) { [self stop]; if (self.delegate) { [self.delegate countdownFinished:self]; [self removeFromSuperview]; } } else { self.countdownLabel.transform = CGAffineTransformIdentity; self.countdownLabel.alpha = 1.0; self.currentCountdownValue--; if (self.currentCountdownValue == 0) { self.countdownLabel.text = self.finishText; } else { self.countdownLabel.text = [NSString stringWithFormat:@"%d", self.currentCountdownValue ]; } } } }]; }
https://github.com/simpliflow/SFCountdownView
以上是关于第13月第13天 iOS 放大消失动画的主要内容,如果未能解决你的问题,请参考以下文章