快好知 kuaihz

iOS在固定的label上如何动态显示所有文字

iOS在固定的label上如何动态显示所有文字

照例先看下效果图:

思路

创建一个view 作为所有内容的父控件, 并且添加到上面一个 label, 作为显示文字的载体

UILabel* contentLabel = [[UILabel alloc] init];[contentLabel sizeToFit];contentLabel.backgroundColor = [UIColor clearColor]; _contentLabel = contentLabel; [self addSubview:self.contentLabel];

内容view的layer添加一个mask层, 并且设置其范围为整个view的bounds, 这样就让超出view的`内容不会显示出来

CAShapeLayer* maskLayer = [CAShapeLayer layer];maskLayer.path = [UIBezierPath bezierPathWithRect:self.bounds].CGPath;self.layer.mask = maskLayer;

给label添加动画

CAKeyframeAnimation* keyFrame = [CAKeyframeAnimation animation];keyFrame.keyPath = @"transform.translation.x";keyFrame.values = @[@(0), @(-space), @(0)];keyFrame.repeatCount = NSIntegerMax;keyFrame.duration = self.speed * self.contentLabel.text.length;keyFrame.timingFunctions = @[[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut], [CAMediaTimingFunction functionWithControlPoints:0 :0 :0.5 :0.5]];keyFrame.delegate = self;[self.contentLabel.layer addAnimation:keyFrame forKey:nil];

使用方法

// 创建CFDynamicLabel* testLabel = [[CFDynamicLabel alloc] initWithFrame:CGRectMake(100, 300, 180, 21)];// 设置滚动速度testLabel.speed = 0.6;[self.view addSubview:testLabel];// 设置基本属性testLabel.text = @"我不想说再见,不说再见,越长大越孤单";testLabel.textColor = [UIColor yellowColor];testLabel.font = [UIFont systemFontOfSize:23];testLabel.backgroundColor = [UIColor grayColor];

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

本站资源来自互联网,仅供学习,如有侵权,请通知删除,敬请谅解!
搜索建议:固定  固定词条  文字  文字词条  所有  所有词条  动态  动态词条  显示  显示词条  
综合

 iPhone7 Plus的屏幕怎...

iPhone7 Plus的屏幕怎么样随着手机行业的发展,如今是智能手机的时代。iPhone7 Plus的屏幕怎么样?屏幕材质是什么?,下面就和jy135小编一起...(展开)

综合

 华为手机如何设置黑名单

华为手机如何设置黑名单我们有时候肯定接过一些骚扰电话,这些令我们烦不胜烦。那么华为手机如何设置黑名单呢?下面就让jy135小编来告诉大家吧,欢迎阅读。01打开手...(展开)

综合

 手机忘记密码怎么办

手机忘记密码怎么办每个人的手机中都有大量的个人信息,我们都会通过一定的加密程序进行保护,最常用的就是开机密码保护。密码一般都会选用我们最熟悉的,不容易忘记的&q...(展开)