我有一个UILabel
将包含一个需要动画以从零增加到给定值的数字。标签放置在一个内部UITableView
并且是一个的子视图UITableViewCell
。由于某些奇怪的原因,我的数字在视图滚动时不会动画。如果我暂停滚动数字动画。为什么会这样以及如何解决?
方法1失败:
NSInteger fromValue = 0;
NSInteger toValue = 57; //In this example toValue has to be greater than fromValue
NSString *suffix = @"K";
NSTimeInterval interval = 0.016; //Adjust for different animation speed
NSTimeInterval delay = 0.0;
for (float i = fromValue; i <= toValue; i++)
{
NSString *labelText = [NSString stringWithFormat:@"%0.3f%@", i, suffix];
[numberLabel1 performSelector:@selector(setText:) withObject:labelText afterDelay:delay];
delay += interval;
}
第二个是使用Giuthub 的 UICountingLabel,它提供了相同的功能但也不起作用。为什么?怎么修?我使用它的代码如下:
UICountingLabel *numberLabel1 = [[UICountingLabel alloc] initWithFrame:CGRectMake(0, 105, winSize.width / 2, 40)]; //winSize is
numberLabel1.textAlignment = NSTextAlignmentCenter;
numberLabel1.method = UILabelCountingMethodLinear;
numberLabel1.format = @"%.3f";
[numberLabel1 countFrom:0 to:num1.floatValue withDuration:countDuration];
关于如何使这个“滴答”的任何其他方式?我需要这个动画才能滚动得非常糟糕。
干杯,简。