具有两个不同标题的按钮平移和缩放动画

Button translation & scale animation with two different title

我需要使用平移和缩放为按钮设置动画 animation.I 我正在使用这个 code.Button 标题是 "ADD MUSIC"

[UIView animateWithDuration:3 animations:^{
    waterMarkButton.transform = CGAffineTransformMakeScale(-1, 1);
}];

它很好地转换,但我的标题也转换了,但我需要标题 "Remove" 当 transform.How 我可以这样做吗?

您可以将您的标题设置为动画:

[UIView transitionWithView:waterMarkBduration:1 options:UIViewAnimationOptionTransitionFlipFromRight animations:^{

    [waterMarkButton setTitle:newText forState:UIControlStateNormal];

} completion:nil];