垂直跑馬燈簡單實現(xiàn)

簡單實現(xiàn),主要是 CATransition的用法

  • MarqueeLabel.h實現(xiàn)
#import <UIKit/UIKit.h>
@class MarqueeLabel;
typedef void(^MarqueeLabelClick)(MarqueeLabel *marqueeLabel,NSInteger  index);

@interface MarqueeLabel : UIView

//要顯示的字符數(shù)組
@property (nonatomic, strong)NSArray<NSString *>  *titlesArray;

//切換速度
@property (nonatomic, assign)CGFloat   speed;

//字體
@property (nonatomic, strong)UIFont    *textFont;

//字體顏色
@property (nonatomic, strong)UIColor   *textColor;

//切換時間間隔
@property (nonatomic, assign)CGFloat   time;

//點擊回調(diào)
@property (nonatomic, copy)MarqueeLabelClick  marqueeLabelClick;

- (void)end;

@end
  • MarqueeLabel.m實現(xiàn)
#import "MarqueeLabel.h"

#define SPEED (0.5)
#define TIME   (3.0)

@interface MarqueeLabel () {
    
    UILabel     *showLabel;
    
    NSTimer     *timer;
    
    NSInteger   count;
}

@end

@implementation MarqueeLabel

- (id)init {
    self = [super init];
    if (self) {
        _textFont = [UIFont systemFontOfSize:14.0];
        _textColor = [UIColor blackColor];
        _time = TIME;
        _speed = SPEED;
        [self subViewInit];
    }
    return self;
}

- (id)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        _textFont = [UIFont systemFontOfSize:14.0];
        _textColor = [UIColor blackColor];
        _time = TIME;
        _speed = SPEED;
        [self subViewInit];
    }
    return self;
}

- (void)layoutSubviews {
    showLabel.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
}

- (void)subViewInit {
    self.clipsToBounds = YES;
    showLabel = [[UILabel alloc]init];
    showLabel.textColor = _textColor;
    showLabel.font = _textFont;
    showLabel.clipsToBounds = YES;
    showLabel.userInteractionEnabled = YES;
    [self addSubview:showLabel];
    
    UITapGestureRecognizer  *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(labelClick)];
    [showLabel addGestureRecognizer:tap];
}

- (void)setTextFont:(UIFont *)textFont {
    _textFont = textFont;
    showLabel.font = _textFont;
}

- (void)setTextColor:(UIColor *)textColor {
    _textColor = textColor;
    showLabel.textColor = _textColor;
}

- (void)setTitlesArray:(NSArray *)titlesArray {
    _titlesArray = titlesArray;
    if (titlesArray && titlesArray.count > 0) {
        count = 0;
        showLabel.text = [_titlesArray firstObject];
        if (!timer) {
            timer = [NSTimer timerWithTimeInterval:_time target:self selector:@selector(timer) userInfo:nil repeats:YES];
            [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
        }
    } else {
        
        if (timer) {
            [timer invalidate];
            timer = nil;
        }
    }
}

- (void)timer{
    dispatch_async(dispatch_get_main_queue(), ^{
        if (_titlesArray && _titlesArray.count > 0) {
            count ++;
            if (count >= _titlesArray.count ) {
                count = 0;
            }
            NSString  *mes = _titlesArray[count];
            [self animation:mes];
            
        }
    });
}

- (void)animation:(NSString *)mes {
    CATransition *animation = [CATransition animation];
    //設置運動時間
    animation.duration = _speed;

//    kCATransitionFade
//    kCATransitionMoveIn
//    kCATransitionPush
//    kCATransitionReveal
    animation.type = kCATransitionPush;
    
//    kCATransitionFromRight
//    kCATransitionFromLeft
//    kCATransitionFromTop
//    kCATransitionFromBottom
    animation.subtype = kCATransitionFromTop;
    //設置運動速度
    animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    showLabel.text = mes;
    [showLabel.layer addAnimation:animation forKey:@"animation"];
}

- (void)end {
    if (timer) {
        [timer invalidate];
        timer = nil;
    }
}

- (void)labelClick {
    if (self.marqueeLabelClick) {
        self.marqueeLabelClick(showLabel.text,count);
    }
}

@end

  • 使用
    MarqueeLabel *label = [[MarqueeLabel alloc]initWithFrame:CGRectMake(20, 64, self.view.frame.size.width - 40, 30)];
    label.titlesArray = @[@"哈哈哈哈",@"呵呵呵呵呵呵呵呵呵呵"];
    label.backgroundColor = [UIColor lightGrayColor];
    label.marqueeLabelClick = ^(NSString *marqueeString,NSInteger  index){
        NSLog(@"______%@____%ld",marqueeString,index);
    };
    [self.view addSubview:label];
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市碱呼,隨后出現(xiàn)的幾起案子酱塔,更是在濱河造成了極大的恐慌暖释,老刑警劉巖抚官,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異脆栋,居然都是意外死亡,警方通過查閱死者的電腦和手機洒擦,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門椿争,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人熟嫩,你說我怎么就攤上這事秦踪。” “怎么了邦危?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵洋侨,是天一觀的道長。 經(jīng)常有香客問我倦蚪,道長希坚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任陵且,我火速辦了婚禮裁僧,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘慕购。我一直安慰自己聊疲,他們只是感情好,可當我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布沪悲。 她就那樣靜靜地躺著获洲,像睡著了一般。 火紅的嫁衣襯著肌膚如雪殿如。 梳的紋絲不亂的頭發(fā)上贡珊,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天最爬,我揣著相機與錄音,去河邊找鬼门岔。 笑死爱致,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的寒随。 我是一名探鬼主播糠悯,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼妻往!你這毒婦竟也來了互艾?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤蒲讯,失蹤者是張志新(化名)和其女友劉穎忘朝,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體判帮,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡局嘁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了晦墙。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片悦昵。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖晌畅,靈堂內(nèi)的尸體忽然破棺而出但指,到底是詐尸還是另有隱情,我是刑警寧澤抗楔,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布棋凳,位于F島的核電站,受9級特大地震影響连躏,放射性物質(zhì)發(fā)生泄漏剩岳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一入热、第九天 我趴在偏房一處隱蔽的房頂上張望拍棕。 院中可真熱鬧,春花似錦勺良、人聲如沸绰播。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蠢箩。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間谬泌,已是汗流浹背示弓。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留呵萨,地道東北人。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓跨跨,卻偏偏與公主長得像潮峦,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子勇婴,可洞房花燭夜當晚...
    茶點故事閱讀 44,573評論 2 353

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