数字动画UICountingLabel运用

    UICountingLabel *countLabel = [UICountingLabel newAutoLayoutView];
    countLabel.textAlignment = NSTextAlignmentCenter;
    countLabel.font = [UIFont fontWithName:@"Arial-Black" size:38];
    countLabel.textColor = [UIColor colorWithHTMLExpression:@"#e68a45"];
    [countView addSubview:countLabel];
    [countLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerX.equalTo(countView.mas_centerX).with.offset(34);
    }];
    countLabel.format = @"%ld";
    countLabel.positiveFormat = @"###,###,###,##0";
    //设置变化范围及动画时间
    [countLabel countFrom:0.00
                       to:countNumber
             withDuration:2.0f];
   

    UIImageView *iconImageView = [UIImageView newAutoLayoutView];
    UIImage *image = [UIImage imageNamed:iconImageName];
    iconImageView.image = image;
    [countView addSubview:iconImageView];
    [iconImageView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.trailing.equalTo(countLabel.mas_leading).with.offset(-kMarginX);
        make.height.offset(kHeight);
        make.bottom.equalTo(countView.mas_bottom);
        make.width.equalTo(iconImageView.mas_height).with.multipliedBy(image.size.width/image.size.height);
    }];

    [countLabel mas_updateConstraints:^(MASConstraintMaker *make) {
        make.centerY.equalTo(iconImageView.mas_centerY);
    }];

在网上找的数字变化demo,这里效果是需要图片和文字整体居中垂直对齐。所以我在最后使countLabel updateConstraints。
效果:

IMG_3511.gif

参考链接:
http://www.open-open.com/lib/view/open1465700275644.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 176,099评论 25 709
  • 遇见你时,没有心动,真的,只觉得冬天的天气有点冷,那一年我们都在上大学。 慢慢的我们聊的多了,可惜那时没有微信,聊...
    小鱼爸爸V587阅读 3,427评论 1 4
  • 01 最近很多学妹问我考研经验,一晃三年,似曾相识。 三年前,我在学生会招生时,很多学妹找到我,说不知道接下来的面...
    随绛阅读 1,760评论 1 5
  • 东面的天空被大朵大朵厚重的云彩堆积,貌似海边肆虐飞舞的泡沫,我没看过海,不懂得波澜壮阔那是怎么样的心情,小小的太阳...
    语若清风阅读 1,409评论 0 0
  • 冬不尽,春不来,满园霜叶护院墙 你不来,我不往,逝去韶华配往昔 月低头,夜举头,清冷对望不相忘 说千言,道万言,终...
    梦想海贼王阅读 1,535评论 0 1

友情链接更多精彩内容