欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS 实现跑马灯效果的方法示例

程序员文章站 2023-12-21 14:15:22
在网页开发当中跑马灯是常用到的,用来显示通知等,在游戏开发当中也如此。 首先来看看效果图: 接下来就简单看看这效果是怎么实现的。 实现方法 1、首先我们从这个图...

在网页开发当中跑马灯是常用到的,用来显示通知等,在游戏开发当中也如此。

首先来看看效果图:

iOS 实现跑马灯效果的方法示例

接下来就简单看看这效果是怎么实现的。

实现方法

1、首先我们从这个图片里面能联想到如果实现这个效果必然需要使用到动画,或者还有有用scrollview的思路,这里我是用的动画的方式实现的。

2、.h文件

自定义一个继承uiview的lgjautorunlabel类,在.h文件中:

@class lgjautorunlabel;

typedef ns_enum(nsinteger, rundirectiontype) {
 lefttype = 0,
 righttype = 1,
};

@protocol lgjautorunlabeldelegate <nsobject>

@optional
- (void)operatelabel: (lgjautorunlabel *)autolabel animationdidstopfinished: (bool)finished;

@end

@interface lgjautorunlabel : uiview

@property (nonatomic, weak) id <lgjautorunlabeldelegate> delegate;
@property (nonatomic, assign) cgfloat speed;
@property (nonatomic, assign) rundirectiontype directiontype;

- (void)addcontentview: (uiview *)view;
- (void)startanimation;
- (void)stopanimation;

定义一个ns_enum用来判断自动滚动的方向,分别是左和右,声明一个可选类型的协议,用来在controller中调用并对autolabel进行操作。声明对外的属性和方法。这里一目了然,主要的实现思路都集中在.m文件中。

3、.m文件

声明“私有”变量和属性:

@interface lgjautorunlabel()<caanimationdelegate>
{
 cgfloat _width;
 cgfloat _height;
 cgfloat _animationviewwidth;
 cgfloat _animationviewheight;
 bool _stoped;
 uiview *_contentview;//滚动内容视图
}
@property (nonatomic, strong) uiview *animationview;//放置滚动内容视图
@end

初始化方法:

- (instancetype)initwithframe:(cgrect)frame {

 if (self == [super initwithframe:frame]) {
 _width = frame.size.width;
 _height = frame.size.height;

 self.speed = 1.0f;
 self.directiontype = lefttype;
 self.layer.maskstobounds = yes;
 self.animationview = [[uiview alloc] initwithframe:cgrectmake(_width, 0, _width, _height)];
 [self addsubview:self.animationview];
 }
 return self;
}

将滚动内容视图contentview添加到动画视图animationview上:

- (void)addcontentview:(uiview *)view {

 [_contentview removefromsuperview];
 view.frame = view.bounds;
 _contentview = view;
 self.animationview.frame = view.bounds;
 [self.animationview addsubview:_contentview];

 _animationviewwidth = self.animationview.frame.size.width;
 _animationviewheight = self.animationview.frame.size.height;
}

让animationview上的contentview自动滚动起来的主要方法在这儿,重点来了,就是这个- (void)startanimation方法,看一下这个方法里面是怎么样实现的:

- (void)startanimation {
 [self.animationview.layer removeanimationforkey:@"animationviewposition"];
 _stoped = no;

 cgpoint pointrightcenter = cgpointmake(_width + _animationviewwidth / 2.f, _animationviewheight / 2.f);
 cgpoint pointleftcenter = cgpointmake(-_animationviewwidth / 2, _animationviewheight / 2.f);
 cgpoint frompoint = self.directiontype == lefttype ? pointrightcenter : pointleftcenter;
 cgpoint topoint  = self.directiontype == lefttype ? pointleftcenter : pointrightcenter;

 self.animationview.center = frompoint;
 uibezierpath *movepath = [uibezierpath bezierpath];
 [movepath movetopoint:frompoint];
 [movepath addlinetopoint:topoint];

 cakeyframeanimation *moveanimation = [cakeyframeanimation animationwithkeypath:@"position"];
 moveanimation.path   = movepath.cgpath;
 moveanimation.removedoncompletion = yes;
 moveanimation.duration  = _animationviewwidth / 30.f * (1 / self.speed);
 moveanimation.delegate  = self;
 [self.animationview.layer addanimation:moveanimation forkey:@"animationviewposition"];
}

↘️首先先把animationview.layer上的动画移除掉,接下来就是要找到animationview\contentview的pointcenter这里把这个中点当做是animationview或者是contentview都行,因为这两个视图的frame是相等的,这步找左右中点的意义在于,完全显示出文字内容,因为可能会遇到那种比如文字太长了,view长度不够,不能完全显示出来文字的全部内容, 这里我们找到中点,也就相当于确定了内容视图要滑动的范围了,接下来根据起始方向的枚举值设置frompoint和topoint这里我们默认是从右向左滚动的。这里我们做动画设置,用到了贝塞尔曲线,我们设置uibezierpath的起始位置就是frompoint也就是屏幕右方(我们看不见)self.animationview.center。终止位置是屏幕左方topoint此时animationview滚动的起始位置的首和终止位置的尾的距离正好是屏幕的宽度。这里我们使用cakeyframeanimation关键帧动画,moveanimation.path                 = movepath.cgpath; ,moveanimation.removedoncompletion  = yes;动画完成后就将动画移除,不保留最终的状态。 [self.animationview.layer addanimation:moveanimation forkey:@"animationviewposition"];将动画添加到animationview.layer上。

(这段是对上面代码的解释)

-------------------分割线-------------------

接下来的这个就是代理方法的实现了,当动画完成后悔调用lgjautorunlabeldelegate我们自定义的delegate方法。

- (void)stopanimation {
 _stoped = yes;
 [self.animationview.layer removeanimationforkey:@"animationviewposition"];
}

- (void)animationdidstop:(caanimation *)anim finished:(bool)flag {
 if (self.delegate && [self.delegate respondstoselector:@selector(operatelabel:animationdidstopfinished:)]) {
 [self.delegate operatelabel:self animationdidstopfinished:flag];
 }
 if (flag && !_stoped) {
 [self startanimation];
 }
}

4、在controller中使用方法

主要的方法就是声明lgjautorunlabel实例,将代理设为自身,声明directiontype默认为left,在runlabel上创建label也就是我们看到的文字。其余方法一目了然了。

//mark:- createautorunlabel
- (void)createautorunlabel {
 lgjautorunlabel *runlabel = [[lgjautorunlabel alloc] initwithframe:cgrectmake(0, 100, kwidth, 50)];
 runlabel.delegate = self;
 runlabel.directiontype = lefttype;
 [self.view addsubview:runlabel];
 [runlabel addcontentview:[self createlabelwithtext:@"繁华声 遁入空门 折煞了梦偏冷 辗转一生 情债又几 如你默认 生死枯等 枯等一圈 又一圈的 浮图塔 断了几层 断了谁的痛直奔 一盏残灯 倾塌的山门 容我再等 历史转身 等酒香醇 等你弹 一曲古筝" textcolor:[selfrandomcolor] labelfont:[uifont systemfontofsize:14]]];
 [runlabel startanimation];
}

- (uilabel *)createlabelwithtext: (nsstring *)text textcolor:(uicolor *)textcolor labelfont:(uifont *)font {
 nsstring *string = [nsstring stringwithformat:@"%@", text];
 cgfloat width = [uilabel getwidthbytitle:string font:font];
 uilabel *label = [[uilabel alloc] initwithframe:cgrectmake(0, 0, width, 50)];
 label.font = font;
 label.text = string;
 label.textcolor = textcolor;
 return label;
}

- (uicolor *)randomcolor {
 return [uicolor colorwithred:[self randomvalue] green:[self randomvalue] blue:[self randomvalue] alpha:1];
}

- (cgfloat)randomvalue {
 return arc4random()%255 / 255.0f;
}

总结

这个例子挺小的,主要思路就是利用动画将其变活,可能不太好理解的地方就是在动画移动的path这个路径的距离上,我们想这个路径的时候肯定要这样想,我让动画从最初我看不见的地方出现,然后最后到我看不见的地方消失,这个中间的距离之差就是屏幕的宽度了,而这个屏幕的宽度正好我们可以用contentview.frame来表示。

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

上一篇:

下一篇: