使用UIScrollView和CADisplayLink实现文字滚动到某个区域放大动画

起因是公司做了小程序,希望app也上,这个动画开始以为的很难,可是后面看一下没有想象中那么复杂,我们来看一下效果图


测评结果动画.gif

然后贴代码

@implementation BLEvaluationResultVC

- (void)viewDidLoad {
[super viewDidLoad];


self.fd_prefersNavigationBarHidden = YES;
self.fd_interactivePopDisabled = YES; //设置不允许滑动返回
self.view.backgroundColor = [UIColor whiteColor];

[self setUpView];
[self countJumpAction];

}



- (void)setUpView{


[self.view addSubview:self.scrollView];
[self.view addSubview:self.bottomView];

[self.scrollView mas_makeConstraints:^(MASConstraintMaker *make) {
    make.centerY.offset(-100);
    make.left.right.equalTo(self.view);
    make.height.offset(scrollViewH);
}];
[self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
    make.top.equalTo(self.scrollView.mas_bottom);
    make.left.right.bottom.equalTo(self.view);
}];


}

- (UIScrollView *)scrollView{

if (!_scrollView) {

    NSMutableArray *array = [NSMutableArray array];
    [array addObject:@"开始筛选案例"];
    [array addObject:@"相似案例匹配"];
    [array addObject:@"能力模型分析"];
    [array addObject:@"报告生成中"];
    [array addObject:@"方案生成完毕"];

    self.titleArr = array;

    _scrollView = [[UIScrollView alloc]init];
    _scrollView.backgroundColor = [UIColor whiteColor];
    _scrollView.delegate = self;
    _scrollView.contentInset = UIEdgeInsetsMake(scrollViewH *0.5 , 0, 0, 0);

    _scrollView.contentSize = CGSizeMake(0, scrollViewH * 0.5 - labelH * 0.5 );
    _scrollView.showsVerticalScrollIndicator = NO;
    _scrollView.userInteractionEnabled = NO;
    
    [self.titleArr enumerateObjectsUsingBlock:^(NSString*  _Nonnull title, NSUInteger idx, BOOL * _Nonnull stop) {
        UILabel *titleLab = [[UILabel alloc] init];
        titleLab.text = title;
        titleLab.textAlignment = NSTextAlignmentCenter;
        titleLab.frame = CGRectMake(0, idx*labelH, kScreenWidth, labelH);
        titleLab.tag = idx;
        [_scrollView addSubview:titleLab];
        if (idx==0) {
            self.currentTag = idx;
            self.currentLab = titleLab;
            titleLab.textColor = RGBColor(76, 76, 77);
            titleLab.font = [UIFont boldSystemFontOfSize:20];
        }else{
            titleLab.textColor = kBLBlack;
            titleLab.font = [UIFont systemFontOfSize:14];
        }
    }];
    self.ms = 0;
    self.displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(displayLinkTriggered:)];
    [self.displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
    
}
return _scrollView;
  }



- (void)completeAnimation{
[self.displayLink invalidate];
self.displayLink = nil;

for (UIView *subview in self.scrollView.subviews) {
        [subview removeFromSuperview];
}

UILabel *titleLab = [[UILabel alloc] init];
titleLab.text = @"方案生成完毕";
titleLab.font = [UIFont systemFontOfSize:20];
titleLab.textColor = kBLBlack;
titleLab.textAlignment = NSTextAlignmentCenter;
titleLab.frame = CGRectMake(0, (self.titleArr.count - 1) * labelH, kScreenWidth, labelH);

[self.scrollView addSubview:titleLab];
}


- (void)displayLinkTriggered:(CADisplayLink *)link{

self.scrollView.contentOffset = CGPointMake(0, self.scrollView.contentOffset.y+1);
self.ms += 1;
if (self.ms == (self.titleArr.count - 1) * 60 + 30) {

    [self completeAnimation];

} else {
    dispatch_async(dispatch_get_main_queue(), ^{
        if (self.ms < 30) {
            self.currentLab.font = [UIFont systemFontOfSize:20-self.ms/30.f*(20-14)];

        } else {

            int currentMS = self.ms-30;
            self.currentTag = (currentMS)/labelH+1;
            UILabel *lab = (UILabel *)[self.scrollView viewWithTag:self.currentTag];

            //处理文字大小
            int count = currentMS%60/30;//在label的中间的上面还是下面
            //下面 文字开始从20变到14
            if (count) {
                lab.font = [UIFont systemFontOfSize:20-currentMS%30/30.f*(20-14)];
            } else {
                //上面 文字开始从14变到20
                lab.font = [UIFont systemFontOfSize:14+currentMS%30/30.f*(20-14)];
            }
            //处理文字颜色
            if (self.currentLab!=lab) {
                self.currentLab.textColor = RGBColor(76, 76, 77);
                lab.textColor = kBLBlack;
                self.currentLab = lab;
            }
        }
    });
    }

}

- (void)viewWillDisappear:(BOOL)animated{
[super viewWillDisappear:animated];
[self completeAnimation];
}


//导航栏左上角返回按钮
- (void)backToUpView
{
[self.navigationController popViewControllerAnimated:YES];
}


- (UIImageView *)bottomView{

if (!_bottomView) {
    _bottomView = [[UIImageView alloc]init];
    _bottomView.image = [UIImage imageNamed:@"resultbg"];
    _bottomView.userInteractionEnabled = YES;
    
    self.countLab = [[UILabel alloc]init];
    self.countLab.text = @"20000+";
    self.countLab.font = [UIFont boldSystemFontOfSize:34];
    self.countLab.textColor = [UIColor whiteColor];
    self.countLab.textAlignment = NSTextAlignmentCenter;
    
    // 获取代表公历的NSCalendar对象
    NSCalendar *gregorian = [[NSCalendar alloc]initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
    // 获取当前日期
    NSDate* dt = [NSDate date];
    // 定义一个时间字段的旗标,指定将会获取指定年、月、日、时、分、秒的信息
    unsigned unitFlags = NSCalendarUnitYear |
    NSCalendarUnitMonth |  NSCalendarUnitDay |
    NSCalendarUnitHour |  NSCalendarUnitMinute |
    NSCalendarUnitSecond | NSCalendarUnitWeekday;
    // 获取不同时间字段的信息
    NSDateComponents* comp = [gregorian components: unitFlags fromDate:dt];
    // 获取各时间字段的数值
    BLLog(@"现在是%ld年" , comp.year);

    self.targetLab = [[UILabel alloc]init];
    self.targetLab.text =[NSString stringWithFormat:@"%ld年%@%@竞争对手预测",comp.year,self.country,self.profession];
    self.targetLab.font = [UIFont boldSystemFontOfSize:16];
    self.targetLab.textColor = [UIColor whiteColor];
    self.targetLab.textAlignment = NSTextAlignmentCenter;
    
    
    self.checkBtn =  [UIButton buttonWithType:UIButtonTypeCustom];
    self.checkBtn.backgroundColor = [UIColor whiteColor];
    self.checkBtn.layer.cornerRadius = 5.0;
    [self.checkBtn setTitle:@"查看我的能力模型" forState:UIControlStateNormal];
    [self.checkBtn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
    [self.checkBtn addTarget:self action:@selector(checkButtonClick) forControlEvents:UIControlEventTouchUpInside];
    
    [_bottomView addSubview:self.countLab];
    [_bottomView addSubview:self.targetLab];
    [_bottomView addSubview:self.checkBtn];
    
    [self.countLab mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.equalTo(_bottomView.mas_centerY).offset(-10);
        make.left.right.equalTo(_bottomView);
    }];
    [self.targetLab mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.countLab.mas_bottom).offset(20);
        make.left.right.equalTo(_bottomView);
    }];
    [self.checkBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.bottom.equalTo(_bottomView.mas_bottom).offset(-30);
        make.left.equalTo(_bottomView.mas_left).mas_offset(40);
        make.right.equalTo(_bottomView.mas_right).mas_offset(-40);
        make.height.offset(40);
    }];

}
return _bottomView;
}

- (void)checkButtonClick{


BLEvaluationReportVC *ReportVC = [[BLEvaluationReportVC alloc]init];
ReportVC.type = self.type;

[self.navigationController pushViewController:ReportVC animated:YES];


}

///文字跳动动画
- (void)countJumpAction
{
__block int _numText = 0;
int _endText = [self.Jzl intValue]; //最后总数据
int _step = 80; //累加数量
double _stepSecond =  (self.titleArr.count - 1) * 1.0 / (_endText / _step);// 5.0动画总时间
//全局队列    默认优先级
dispatch_queue_t quene = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);

dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, quene);
//NSEC_PER_SEC是秒,*1是每秒
dispatch_source_set_timer(timer, dispatch_walltime(NULL, 0), NSEC_PER_SEC * _stepSecond, 0);

dispatch_source_set_event_handler(timer, ^{
    //回调主线程,在主线程中操作UI
    dispatch_async(dispatch_get_main_queue(), ^{
        if (_numText <= _endText) {
            
            self.countLab.text = [NSString stringWithFormat:@"%.d",_numText];
            _numText+=_step;

        }else{

            dispatch_source_cancel(timer);
            self.countLab.text = [NSString stringWithFormat:@"%d+",_endText];

        }
    });
});
dispatch_resume(timer);
}

- (void)dealloc{
BLLog(@"销毁");
}
?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,029评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,238评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,576评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,214评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,324评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,392评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,416评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,196评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,631评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,919评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,090评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,767评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,410评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,090评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,328评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,952评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,979评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,943评论 25 707
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,975评论 3 119
  • 很想去为自己努力一把,不想浪漫了时光,毕竟人的一生很短,过了这个年华,再也没机会了。不是吗?
    一只柠檬味的猫阅读 196评论 0 0
  • 每个人都不一样,有效率的人每天可以做很多事,而效率慢的呢总是一天拖过一天。 但人生也就这几十年时光,浪费的都是自己...
    纯妹子阅读 287评论 0 0
  • 在那美丽的清漳河畔 有我心中最美的故乡 所有童年的欢乐时光 总有清漳河深情拥抱 长大后常常身不由己 为追梦不惜远走...
    路雨飞飞阅读 367评论 0 2