基于CABasicAnimation實現(xiàn)跑馬燈效果

整體實現(xiàn)思路如下圖所示:
當(dāng)需要顯示的內(nèi)容不足以一屏寬度展示時涎永,這個時候創(chuàng)建兩個相同內(nèi)的label,添加到一個containerView中然后對它的layer層作位移動畫移動距離為stringRect.width+spacing汤徽,動畫如此往復(fù)即可實現(xiàn)跑馬燈效果

image

代碼實現(xiàn)如下:
//
//  XLScrollLabelView.h
//  跑馬燈Demo
//
//  Created by xiaoliuTX on 2017/4/24.
//  Copyright ? 2017年 xiaoliuTX. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface XLScrollLabelView : UIView
@property (nonatomic, strong) NSString *contentTitle;
@property (nonatomic, strong) UIColor  *fontColor;
@property (nonatomic, strong) UIColor  *backGroundColor;
@property (nonatomic, strong) UIFont   *titleFont;
@property (nonatomic, assign) NSInteger padding;    //與屏幕左右邊緣的距離
@property (nonatomic, assign) NSInteger spacing;
//相鄰滾動label間的距離
@property (nonatomic, assign) NSInteger duration;
// 開始動畫
- (void)startScrolling;
// 暫停動畫
- (void)pauseScrolling;
// 繼續(xù)動畫
- (void)consumeScrolling;
@end

#import "XLScrollLabelView.h"
#define SCreenWidth [UIScreen mainScreen].bounds.size.width

typedef NS_ENUM(NSInteger, ScrollingState) {
    ScrollingStateNotBegin = 0,
    ScrollingStateScrolling = 1,
    ScrollingStateStoped = 2
};

@interface XLScrollLabelView() <CAAnimationDelegate>
@property (nonatomic, strong) UIView  *containerView;
@property (nonatomic, strong) UILabel *leftLabel;
@property (nonatomic, strong) UILabel *rightLabel;
@property (nonatomic, assign) CGSize  stringRect;
@property (nonatomic, assign) ScrollingState scrollStatus;
@end

@implementation XLScrollLabelView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        //
        [self setDefaultUI];
    }
    
    return self;
}

- (void)setContentTitle:(NSString *)contentTitle {
    _contentTitle = contentTitle;
    // duration時間大小為5 lenth/s
    self.duration = contentTitle.length / 5;
    NSDictionary *attribute = @{NSFontAttributeName:[UIFont systemFontOfSize:14]};
    CGSize size = CGSizeMake(2000, CGRectGetHeight(self.bounds));
    self.stringRect = [self.contentTitle boundingRectWithSize:size
                                                      options:\
                               NSStringDrawingTruncatesLastVisibleLine |
                               NSStringDrawingUsesLineFragmentOrigin |
                               NSStringDrawingUsesFontLeading
                                                   attributes:attribute
                                                      context:nil].size;
    
    if (self.stringRect.width < SCreenWidth - self.padding) {
        self.leftLabel.font = [UIFont systemFontOfSize:14];
        CGRect bounds = self.leftLabel.bounds;
        bounds.size = self.stringRect;
        self.leftLabel.bounds = bounds;
        self.leftLabel.center = CGPointMake(SCreenWidth/2, CGRectGetMidY(self.frame));
        self.leftLabel.text = self.contentTitle;
        self.leftLabel.backgroundColor = [UIColor clearColor];
        self.leftLabel.textColor = [UIColor redColor];
        self.leftLabel.contentMode = UIViewContentModeLeft;
        
        [self addSubview:self.leftLabel];
    } else {
        self.containerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.frame), CGRectGetHeight(self.frame))];
        [self addSubview:self.containerView];
        
        self.leftLabel.font = [UIFont systemFontOfSize:14];
        self.leftLabel.backgroundColor = self.backgroundColor;
        self.leftLabel.textColor = self.fontColor;
        self.leftLabel.contentMode = UIViewContentModeLeft;
        self.leftLabel.text = self.contentTitle;
        self.leftLabel.frame = CGRectMake(self.padding, 0, self.stringRect.width, CGRectGetHeight(self.containerView.frame));
        [self.containerView addSubview:self.leftLabel];
        
        self.rightLabel.font = [UIFont systemFontOfSize:14];
        self.rightLabel.backgroundColor = self.backgroundColor;
        self.rightLabel.textColor = self.fontColor;
        self.rightLabel.contentMode = UIViewContentModeLeft;
        self.rightLabel.text = self.contentTitle;
        self.rightLabel.frame = CGRectMake(CGRectGetMaxX(self.leftLabel.frame)+self.spacing, 0, self.stringRect.width, CGRectGetHeight(self.containerView.frame));
        [self.containerView addSubview:self.rightLabel];
    }
}

- (void)startScrolling {
    CABasicAnimation *scrollAnimation = [CABasicAnimation animationWithKeyPath:@"position"];
    scrollAnimation.delegate = self;
    scrollAnimation.duration = self.duration;
    scrollAnimation.fromValue = [NSValue valueWithCGPoint:self.containerView.layer.position];
    scrollAnimation.toValue = [NSValue valueWithCGPoint:CGPointMake(self.containerView.layer.position.x - (self.stringRect.width+self.spacing), self.containerView.layer.position.y)];
    // 設(shè)置滾動次數(shù)無窮大
    scrollAnimation.repeatCount = HUGE_VALF;
    scrollAnimation.autoreverses = NO;
    scrollAnimation.fillMode = kCAFillModeForwards;
    scrollAnimation.removedOnCompletion = NO;
    
    [self.containerView.layer addAnimation:scrollAnimation forKey:@"xiaoliuTX"];
    self.scrollStatus = ScrollingStateScrolling;
}

- (void)pauseScrolling {
    // 暫停動畫
    if (self.scrollStatus == ScrollingStateScrolling) {
        CFTimeInterval pausedTime = [self.containerView.layer convertTime:CACurrentMediaTime() fromLayer:nil];
        self.containerView.layer.speed               = 0.0;
        self.containerView.layer.timeOffset          = pausedTime;
        
        self.scrollStatus = ScrollingStateStoped;
    }
}

- (void)consumeScrolling {
    if (self.scrollStatus == ScrollingStateStoped) {
        CFTimeInterval pausedTime     = [self.containerView.layer timeOffset];
        self.containerView.layer.speed                   = 1.0;
        self.containerView.layer.timeOffset              = 0.0;
        self.containerView.layer.beginTime               = 0.0;
        CFTimeInterval timeSincePause = [self.containerView.layer convertTime:CACurrentMediaTime() fromLayer:nil] - pausedTime;
        self.containerView.layer.beginTime               = timeSincePause;
        
        self.scrollStatus = ScrollingStateScrolling;
    }
}

- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
    NSLog(@"%@ stop is %d",anim,flag);
    self.scrollStatus = ScrollingStateStoped;
    
    [self.containerView.layer removeAnimationForKey:@"xiaoliuTX"];
}

- (void)ScrollDidEnd {
    
}

- (void)setDefaultUI {
    self.fontColor = [UIColor blackColor];
    self.backgroundColor = [UIColor clearColor];
    self.titleFont = [UIFont systemFontOfSize:14];
    self.padding = 20;
    self.spacing = 40;
}

- (void)setFontColor:(UIColor *)fontColor {
    _fontColor = fontColor;
    
    self.leftLabel.textColor = _fontColor;
    self.rightLabel.textColor = _fontColor;
}

-(UILabel *)leftLabel {
    if (!_leftLabel) {
        _leftLabel = [UILabel new];
        _leftLabel.font = _titleFont;
    }
    
    return _leftLabel;
}

-(UILabel *)rightLabel {
    if (!_rightLabel) {
        _rightLabel = [UILabel new];
        _rightLabel.font = _titleFont;
    }
    
    return _rightLabel;
}


@end

效果如下:


image

Demo請點擊這里

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末脆诉,一起剝皮案震驚了整個濱河市音比,隨后出現(xiàn)的幾起案子蚂蕴,更是在濱河造成了極大的恐慌纫塌,老刑警劉巖苛萎,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件桨昙,死亡現(xiàn)場離奇詭異跌帐,居然都是意外死亡,警方通過查閱死者的電腦和手機绊率,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門谨敛,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人滤否,你說我怎么就攤上這事脸狸。” “怎么了藐俺?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵炊甲,是天一觀的道長。 經(jīng)常有香客問我欲芹,道長卿啡,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任菱父,我火速辦了婚禮颈娜,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘浙宜。我一直安慰自己官辽,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布粟瞬。 她就那樣靜靜地躺著同仆,像睡著了一般。 火紅的嫁衣襯著肌膚如雪裙品。 梳的紋絲不亂的頭發(fā)上俗批,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天,我揣著相機與錄音市怎,去河邊找鬼岁忘。 笑死,一個胖子當(dāng)著我的面吹牛焰轻,可吹牛的內(nèi)容都是我干的臭觉。 我是一名探鬼主播昆雀,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼辱志,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了狞膘?” 一聲冷哼從身側(cè)響起揩懒,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎挽封,沒想到半個月后已球,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年智亮,在試婚紗的時候發(fā)現(xiàn)自己被綠了忆某。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡阔蛉,死狀恐怖弃舒,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情状原,我是刑警寧澤聋呢,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站颠区,受9級特大地震影響削锰,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜毕莱,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一器贩、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧朋截,春花似錦磨澡、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至饲宿,卻和暖如春厦酬,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背瘫想。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工仗阅, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人国夜。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓减噪,卻偏偏與公主長得像,于是被迫代替她去往敵國和親车吹。 傳聞我的和親對象是個殘疾皇子筹裕,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容