第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 放大消失动画的主要内容,如果未能解决你的问题,请参考以下文章

第13月第25天 ios11 uitableview reloaddata contentsize

第13月第10天 swift3.0

第17月第7天 iOS 数组越界,防Crash处理

第43月第6天 iOS静态库冲突

第43月第6天 iOS静态库冲突

第18月第10天 iOS11 uicollectionview