在iOS中动画文本内容 – 等同于Android ValueAnimator

前端之家收集整理的这篇文章主要介绍了在iOS中动画文本内容 – 等同于Android ValueAnimator前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用iOS 7应用程序,并希望动画更改UILabel的内容.我不想做任何图形动画,如淡化旧内容/淡入新内容.因此,iOS提供的所有标准动画功能(如图层动画或动画块)无法使用(至少我认为).

假设UILabel显示“200 V”的仪表值,此文本应更改为“400 V”.文本不应该只是从“200 V”跳到“400 V”,而应该使用一些缓动功能计数:“200 V”,“220 V”,“240 V”…“390 V”,“395 V“…”400 V“

Android中可以使用ValueAnimator轻松解决

  1. ValueAnimator animation = ValueAnimator.ofFloat(0f,1f);
  2. animation.setInterpolation(new EaSEOutInterpolator());
  3. animation.setDuration(2500);
  4. animation.setStartDelay(500);
  5.  
  6. animation.addUpdateListener(new AnimatorUpdateListener() {
  7. @Override
  8. public void onAnimationUpate(ValueAnimator animator) {
  9. float currentValue = animator.getAnimatedValue.floatValue();
  10. label1.setText(String.format("%.2",fromValue1 + ((toValue1 - fromValue1) * currentValue)));
  11. label2.setText(String.format("%.2",fromValue2 + ((toValue2 - fromValue2) * currentValue)));
  12. ...
  13. }
  14. });
  15. animation.start();

iOS还有这样的事情吗?我发现不同的解决方案,但它们都很旧(2010/11),并且最终都使用NSTimer和自己的缓动功能手动实现这个行为.

没有问题,可以自己实现这一点,但这将是相当麻烦,不是非常优雅.那么在iOS中有没有什么可以解决这个问题呢,还是至少有方便的第三方实现?

非常感谢你!

解决方法

因为我没有找到定制的解决方案,我创建了我自己的:一个简单的动画师类,处理轻松:
  1. // MyValueAnimation.h
  2. typedef void (^MyAnimationBlock)(double animationValue);
  3.  
  4. @interface MyValueAnimation : NSObject
  5.  
  6. - (void)startAnimation:(MyAnimationBlock)animationBlock runtime:(NSUInteger)runtime delay:(NSUInteger)delay;
  7.  
  8. @end
  9.  
  10.  
  11. // MyValueAnimation.m
  12. #import "MyValueAnimation.h"
  13.  
  14. // Number of seconds between each animation step
  15. #define kStepSize 0.05
  16.  
  17. @interface MyValueAnimation () {
  18. NSTimer *timer;
  19. NSUInteger totalRunTime; // Total duration of the animation (delay not included)
  20. NSUInteger currentRuntime; // Time the animation is already running
  21. MyAnimationBlock animationBlock;
  22. }
  23. @end
  24.  
  25. @implementation MyValueAnimation
  26.  
  27. - (void)startAnimation:(MyAnimationBlock)block runtime:(NSUInteger)runtime delay:(NSUInteger)delay {
  28. if (timer != nil)
  29. [timer invalidate];
  30.  
  31. timer = nil;
  32. totalRunTime = runtime;
  33. animationBlock = block;
  34. currentRuntime = 0;
  35.  
  36. if (block != nil) {
  37. if (delay > 0) {
  38. // Wait to delay the start. Convert delay from millis to seconds
  39. double delaySeconds = (double)delay / 1000.0;
  40. timer = [NSTimer scheduledTimerWithTimeInterval:delaySeconds target:self selector:@selector(delayTick:) userInfo:nil repeats:false];
  41. } else {
  42. // Run the animation
  43. timer = [NSTimer scheduledTimerWithTimeInterval:kStepSize target:self selector:@selector(animationTick:) userInfo:nil repeats:true];
  44. }
  45. }
  46. }
  47.  
  48. - (void)delayTick:(NSTimer *)delayTimer {
  49. // End of delay -> run animation
  50. [delayTimer invalidate];
  51. timer = [NSTimer scheduledTimerWithTimeInterval:kStepSize target:self selector:@selector(animationTick:) userInfo:nil repeats:true];
  52. }
  53.  
  54. - (void)animationTick:(NSTimer *)animationTimer {
  55. NSUInteger step = 1000 * kStepSize; // step size/length in milli seconds
  56. currentRuntime += step;
  57. double progress = MIN((double)currentRuntime / (double)totalRunTime,1.0);
  58.  
  59. // Progress is a value between 0 and 1. The easing function maps this
  60. // to the animationValue which is than used inside the animationBlock
  61. // to calculate the current value of the animiation
  62. double animationValue = [self customEaSEOut:progress];
  63.  
  64. if (animationBlock != nil)
  65. animationBlock(animationValue);
  66.  
  67. if (progress >= 1.0) {
  68. // Animation complete
  69. [timer invalidate];
  70. timer = nil;
  71. }
  72. }
  73.  
  74. - (double)customEaSEOut:(double)t {
  75. // Use any easing function you like to animate your values...
  76. // http://rechneronline.de/function-graphs/
  77. // http://sol.gfxile.net/interpolation/
  78. return (1 - pow(1-t,2));
  79. }
  80.  
  81. @end
  82.  
  83.  
  84. // =============================================================
  85.  
  86. // Some code using the animation
  87. - (void)animateValueFrom:(double)fromValue to:(double)toValue {
  88. if (valueAnimation == nil)
  89. valueAnimation = [[MyValueAnimation alloc] init];
  90.  
  91. MyAnimationBlock animationBlock = ^(double animationValue) {
  92. double currentValue = fromValue + ((toValue - fromValue) * animationValue);
  93.  
  94. someLabel.text = [NSString stringWithFormat:"%dV",currentValue];
  95. };
  96.  
  97. [valueAnimation startAnimation:animationBlock runtime:1500 delay:500];
  98. }

也许不是最漂亮的解决方案,但它的作品:-)

猜你在找的iOS相关文章