如何将 UILabel 从小到原始大小进行动画处理?

How to animate an UILabel from small to its original size?

实际上我在我的应用程序中使用了 RESlider。在菜单 table 视图中有一个个人资料图片,旁边有一个通知标签。现在我想要的是,当用户按下汉堡菜单时,通知标签(带有 999 数字的橙色标签)应该从一个小点动画到它的原始大小。如何实现这一目标?

更改标签的变换比例,如下所示:

[UIView animateWithDuration:0.5
                          delay:0.0
                        options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat | UIViewAnimationOptionCurveEaseInOut
                     animations:^{
                         timerLabel.transform = CGAffineTransformScale(timerLabel.transform, 0.7, 0.7);
                     }
                     completion:nil];
   myTextLabel.transform = CGAffineTransformMakeScale(0.3, 0.3);
[UIView animateWithDuration:2.0
                      delay: 0.1
                    options: UIViewAnimationOptionBeginFromCurrentState
                 animations:^{
                     myTextLabel.transform = CGAffineTransformMakeScale(1.5, 1.5); //grow
                 }
                 completion:^(BOOL finished){
                     myTextLabel.transform = CGAffineTransformMakeScale(1, 1);
                 }];

将其放入 viewDidAppear

-(void)viewDidAppear:(BOOL)animated{
     self.label.transform = CGAffineTransformMakeScale(0.01, 0.01);
    [UIView animateWithDuration:0.5 animations:^{
        self.label.transform = CGAffineTransformIdentity;
    } completion:^(BOOL finished) {

    }];
}