Fade In Fade Out Animation

后端 未结 13 1149
生来不讨喜
生来不讨喜 2021-01-30 01:45

Here is some code I struggle with for a while.

If you start the fade in animation, the label text fades in. If I start the fade out animation the the label text fades ou

13条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-30 02:03

    My task was to make a label fade out. And then fade in with changed text. The solution was:

        -(void)performAnimationOnHistoryButtonLabelUpdatingTextTo:(NSString *)text
    {
        [UIView animateWithDuration:0.4f animations:^{
            [self.historyButtonLabel setAlpha:0.0f];
    
        } completion:^(BOOL finished) {
            self.historyButtonLabel.text = text;
    
            [UIView animateWithDuration:0.4f animations:^{
                [self.historyButtonLabel setAlpha:1.0f];
            } completion:nil];
    
        }];
    }
    

提交回复
热议问题