美文网首页
iOS使用UICountingLabel实现数字变化的动画效果(

iOS使用UICountingLabel实现数字变化的动画效果(

作者: 写代码的八爪鱼 | 来源:发表于2017-11-12 12:26 被阅读58次

    <pre>

    在大多数金融类 app 上或者其他 app 需要数字展示的地方, 经常会有如下的动画效果:

    image

    怎么做呢?

    一、下载UICountingLabel

    下载地址: https://github.com/dataxpress/UICountingLabel
    UICountingLabel只支持整形和浮点数样式, 像大部分金融类app里面显示的金额(带有千分位分隔符)的样式是无法显示的, 但是后面会给出解决方案, 实现这些的效果!

    二、使用UICountingLabel

    1. 初始化

    UICountingLabel 继承 UILabel, 初始化和 UILabel 一样, 如下:

    UICountingLabel* myLabel = [[UICountingLabel alloc] initWithFrame:CGRectMake(10, 10, 100, 40)];
    [self.view addSubview:myLabel];
    
    2. 设置文本样式

    可以这样设置:

    myLabel.format = @"%d";
    

    也可以使用 block设置:

    myLabel.formatBlock = ^NSString* (CGFloat value) {    
        NSInteger years = value / 12;
        NSInteger months = (NSInteger)value % 12;
        if (years == 0) {
            return [NSString stringWithFormat: @"%ld months", (long)months];
        }
        else {
            return [NSString stringWithFormat: @"%ld years, %ld months", (long)years, (long)months];
        }
    };
    
    3. 设置变化范围及动画时间
    [myLabel countFrom:50 to:100 withDuration:5.0f];
    

    就这么简单!

    三、实例效果

    1. 整数样式数字的变化

    代码如下:

    UICountingLabel *myLabel = [[UICountingLabel alloc] initWithFrame:CGRectMake(20, CGRectGetMaxY(titleLabel.frame)+1, 280, 45)];
    myLabel.textAlignment = NSTextAlignmentCenter;
    myLabel.font = [UIFont fontWithName:@"Avenir Next" size:48];
    myLabel.textColor = [UIColor colorWithRed:236/255.0 green:66/255.0 blue:43/255.0 alpha:1];
    [self.view addSubview:myLabel];
    //设置格式
    myLabel.format = @"%d";
    //设置变化范围及动画时间
    [self.myLabel countFrom:0
                             to:100
                   withDuration:1.0f];
    

    效果图如下:

    image
    2. 浮点数样式数字的变化

    代码如下:

    UICountingLabel *myLabel = [[UICountingLabel alloc] initWithFrame:CGRectMake(20, CGRectGetMaxY(titleLabel.frame)+1, 280, 45)];
    myLabel.textAlignment = NSTextAlignmentCenter;
    myLabel.font = [UIFont fontWithName:@"Avenir Next" size:48];
    myLabel.textColor = [UIColor colorWithRed:236/255.0 green:66/255.0 blue:43/255.0 alpha:1];
    [self.view addSubview:myLabel];
    //设置格式
    myLabel.format = @"%.2f";
    //设置变化范围及动画时间
    [self.myLabel countFrom:0.00
                             to:3198.23
                   withDuration:1.0f];
    

    效果图如下:

    image
    3. 带有千分位分隔符的浮点数样式

    由于UICountingLabel没有这种样式, 所以稍微需要修改一下UICountingLabel文件.
    首先在UICountingLabel.h头文件中增加一个属性, 如下图:

    image

    接着在UICountingLabel.m文件里面- (void)setTextValue:(CGFloat)value方法中添加如下代码:

    image

    这样UICountingLabel就可以实现这种样式了.

    下面开始实现这种样式, 代码如下:

    UICountingLabel *myLabel = [[UICountingLabel alloc] initWithFrame:CGRectMake(20, CGRectGetMaxY(titleLabel.frame)+1, 280, 45)];
    myLabel.textAlignment = NSTextAlignmentCenter;
    myLabel.font = [UIFont fontWithName:@"Avenir Next" size:48];
    myLabel.textColor = [UIColor colorWithRed:236/255.0 green:66/255.0 blue:43/255.0 alpha:1];
    [self.view addSubview:myLabel];
    //设置格式
    myLabel.format = @"%.2f";
    //设置分隔符样式
    myLabel.positiveFormat = @"###,##0.00";
    //设置变化范围及动画时间
    [self.myLabel countFrom:0.00
                        to:3048.64
              withDuration:1.0f];
    

    效果图如下:

    image

    作者:jianshu_wl
    链接:http://www.jianshu.com/p/e25f63e7af3f
    來源:简书
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。</pre>

    相关文章

      网友评论

          本文标题:iOS使用UICountingLabel实现数字变化的动画效果(

          本文链接:https://www.haomeiwen.com/subject/jpvnmxtx.html