web-dev-qa-db-ja.com

2つの数字の間でUILabelテキストをアニメーション化しますか?

私はiPhoneとMacのプログラミング(Windows用に以前に開発された)が初めてなので、質問があります。

2つの数値間のtextUILabelプロパティをアニメーション化するにはどうすればよいですか。 5から8までのEase-Outスタイル? CoreAnimationで可能ですか? Googleで1時間検索しましたが、問題を解決できるものが見つかりませんでした。欲しいもの:シンプルなゲームのユーザーのお金をアニメーション化します。 5から1またはアニメーションのないそのようなものに移行するだけでは、見た目はあまり良くありません。

それを行う方法を知っている人はいますか?

ありがとう!

78
Markus Kasten

自動遷移を使用できます。それは完全にうまく機能しています:

// Add transition (must be called after myLabel has been displayed)
 CATransition *animation = [CATransition animation];
animation.duration = 1.0;
animation.type = kCATransitionFade;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
[myLabel.layer addAnimation:animation forKey:@"changeTextTransition"];

// Change the text
myLabel.text = newText;

このコードは、myLabelが既に表示されている場合に機能します。そうでない場合、myLabel.layerはnilになり、アニメーションはオブジェクトに追加されません。


in Swift 4それは:

let animation: CATransition = CATransition()
animation.duration = 1.0
animation.type = kCATransitionFade
animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)
myLabel.layer.add(animation, forKey: "changeTextTransition")
158
CedricSoubrie

うまくいきます!

Objective-C

[UIView transitionWithView:self.label 
                  duration:.5f 
                   options:UIViewAnimationOptionCurveEaseInOut | 
                           UIViewAnimationOptionTransitionCrossDissolve 
                animations:^{

    self.label.text = Rand() % 2 ? @"111!" : @"42";

} completion:nil];

スイフト

UIView.transitionWithView(label, duration: 0.25, options: [.CurveEaseInOut, .TransitionCrossDissolve], animations: {
    self.label.text = (arc4random() % 2 == 0) ? "111" : "222"
}, completion: nil)
26
Anton Gaenko

PRTween と呼ばれるさまざまな異なるタイミング関数で値をトゥイーンするための素晴らしいエンジンを見つけました。クラスをインストールし、これらの行に沿っていくつかのコードを作成します。

- (IBAction)tweenValue
{
    [[PRTween sharedInstance] removeTweenOperation:activeTweenOperation];
    PRTweenPeriod *period = [PRTweenPeriod periodWithStartValue:0.0 endValue:100.0 duration:1.0];
    activeTweenOperation = [[PRTween sharedInstance] addTweenPeriod:period
                                                             target:self
                                                           selector:@selector(update:)
                                                     timingFunction:&PRTweenTimingFunctionCircOut];
}

- (void)update:(PRTweenPeriod*)period
{
    self.animatingView.center = CGPointMake(period.tweenedValue + 100.0, 200.0);
    self.valueLabel.text = [NSString stringWithFormat:@"%.2f", period.tweenedValue];
}

私にとっておやつです。 :)

7
jowie

新しい番号で前の番号を押してカウントダウンしたい場合(ティッカーなど):

let animation = CATransition()
animation.removedOnCompletion = true
animation.duration = 0.2
animation.type = kCATransitionPush
animation.subtype = newValue > value ? kCATransitionFromTop : kCATransitionFromBottom
animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)
valueLabel.layer.addAnimation(animation, forKey:"changeTextTransition")
5
Adam Waite

Swift 2.0、UIView.transitionWithView()メソッドを使用:

UIView.transitionWithView(self.payPeriodSummaryLabel,
        duration: 0.2,
        options: [.CurveEaseInOut, .TransitionCrossDissolve],
        animations: { () -> Void in
            self.label.text = "your text value"
        }, completion: nil)
3
brandonscript