iOS可拖動時間刻度軸

效果


效果圖.png

可左右拖動和通過縮放來實現不同刻度模式的切換,下面代碼只使用了兩種刻度模式.
綠色部分代表有錄制的視頻數據,該效果可根據需求自行修改.

安卓版
寫法思路完全相同

思路

繪圖主要繪制刻度線和時間數值,其中要記錄和使用的主要數值為時間戳,相應時間戳在需要繪制的界面里對應的x的值,時間參考為時間軸中線,而刻度線參考為0刻度即左邊界.需要處理的主要關系為時間戳和中間刻度所代表的時間刻度改變時各個時間戳所代表的相對于控件本身的x的值.
那么所有數據都可以通過中間線位置所代表的時間,控件本身的寬度,刻度線間距寬度和其所代表的時間長度進行換算和相互轉化來解決,而繪圖為保證性能可以通過計算只去繪制需要繪制的內容.
最終需要達到的效果是通過改變中央刻度線所代表的時間戳的值來實現整個時間軸的繪制.而我們改變時間軸就只要改變中間刻度線所代表的時間戳,然后重新繪制就可以實現各種效果,比如拖動,就是根據手指拖動的距離換算成時間長度對中央刻度線時間戳進行加減,然后不斷繪制達到拖動時整個時間軸滑動的效果.

代碼

ZFTimeLine.h

#import <UIKit/UIKit.h>

typedef enum{
    ScaleTypeBig,           //大
    ScaleTypeSmall          //小
}ScaleType;                 //時間軸模式

@class ZFTimeLine;
@protocol ZFTimeLineDelegate <NSObject>
- (void)timeLine:(ZFTimeLine *)timeLine moveToDate:(NSString *)date;
@end

@interface ZFTimeLine : UIView
@property (nonatomic, assign) id<ZFTimeLineDelegate> delegate;


//刷新,但不改變時間
-(void)refresh;
#pragma mark --- 刷新到到當前時間
- (void)refreshNow;
#pragma mark --- 移動到某時間
// date數據格式舉例 20170815121020
- (void)moveToDate:(NSString *)date;

#pragma mark --- 獲取時間軸指向的時間
//返回數據舉例 20170815121020
-(NSString *)currentTimeStr;

//鎖定 不可拖動
- (void)lockMove;

//解鎖 可拖動
- (void)unLockMove;

@end

ZFTimeLine.m

#import "ZFTimeLine.h"

@interface ZFTimeLine(){
    float intervalValue;                        //小刻度寬度 默認10
    NSDateFormatter *formatterScale;            //時間格式化 用于獲取時刻表文字
    NSDateFormatter *formatterProject;          //時間格式化 用于項目同于時間格式轉化
    ScaleType scaleType;                        //時間軸模式
    NSTimeInterval currentInterval;             //中間時刻對應的時間戳
    
    CGPoint moveStart;                          //移動的開始點
    float scaleValue;                           //縮放時記錄開始的間距
    
    BOOL onTouch;                               //是否在觸摸狀態(tài)
}

@end

@implementation ZFTimeLine

- (instancetype)initWithCoder:(NSCoder *)aDecoder{
    self = [super initWithCoder:aDecoder];
    if (self) {
        self.backgroundColor = [UIColor blackColor];
        self.alpha = 0.8;
        intervalValue = 10;
        formatterScale = [[NSDateFormatter alloc]init];
        [formatterScale setDateFormat:@"HH:mm"];
        
        formatterProject = [[NSDateFormatter alloc]init];
        [formatterProject setDateFormat:@"yyyyMMddHHmmss"];
        
        scaleType = ScaleTypeBig;
        [self timeNow];
        self.multipleTouchEnabled = YES;
        onTouch = NO;
    }
    return self;
}
-(void)layoutSubviews{
    [self setNeedsDisplay];
}
#pragma mark --- 觸摸事件
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    if (!self.userInteractionEnabled) {
        return;
    }
    onTouch = YES;
    if (touches.count == 1) {
        UITouch *touch = [touches anyObject];
        moveStart = [touch locationInView:self];
    }else if (touches.count == 2){
        NSArray *arr = [touches allObjects];
        UITouch *touch1 = arr[0];
        UITouch *touch2 = arr[1];
        scaleValue = fabs([touch2 locationInView:self].x - [touch1 locationInView:self].x);
    }
}
-(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    if (!self.userInteractionEnabled) {
        return;
    }
    if (touches.count == 1) {
        UITouch *touch = [touches anyObject];
        CGPoint point = [touch locationInView:self];
        float x = point.x - moveStart.x;
        currentInterval = currentInterval - [self secondsOfIntervalValue] * x;
        moveStart = point;
        [self setNeedsDisplay];
    }else if (touches.count == 2){
        NSArray *arr = [touches allObjects];
        UITouch *touch1 = arr[0];
        UITouch *touch2 = arr[1];
        float value = fabs([touch2 locationInView:self].x - [touch1 locationInView:self].x) ;
        
        if (scaleType == ScaleTypeBig) {
            if (scaleValue - value < 0) {//變大
                intervalValue = intervalValue + (value - scaleValue)/100;
                if (intervalValue >= 15) {
                    scaleType = ScaleTypeSmall;
                    intervalValue = 10;
                }
            }else{//縮小
                intervalValue = intervalValue + (value - scaleValue)/100;
                if (intervalValue < 10) {
                    intervalValue = 10;
                }
            }
        }else{
            if (scaleValue - value < 0) {//變大
                intervalValue = intervalValue + (value - scaleValue)/100;
                if (intervalValue >= 15) {
                    intervalValue = 15;
                }
            }else{//縮小
                intervalValue = intervalValue + (value - scaleValue)/100;
                if (intervalValue < 10) {
                    scaleType = ScaleTypeBig;
                    intervalValue = 10;
                }
            }
        }
        [self setNeedsDisplay];
    }
}
-(void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    if (!self.userInteractionEnabled) {
        return;
    }
    onTouch = NO;

    if (self.delegate && [self.delegate respondsToSelector:@selector(timeLine:moveToDate:)]) {
        [self.delegate timeLine:self moveToDate:[self currentTimeStr]];
    }
    [DFTime delaySec:0.5 perform:^{
        
    }];
}
//鎖定 不可拖動
- (void)lockMove{
    self.userInteractionEnabled = NO;
}
//解鎖 可拖動
- (void)unLockMove{
    self.userInteractionEnabled = YES;
}
//刷新,但不改變時間
-(void)refresh{
    [self setNeedsDisplay];
}
#pragma mark --- 刷新到當到前時間
- (void)refreshNow{
    if (onTouch || !self.userInteractionEnabled) {
        return;
    }
    [self timeNow];
    [self setNeedsDisplay];
}
#pragma mark --- 移動到某時間
// date數據格式舉例 20170815121020
- (void)moveToDate:(NSString *)date{
    if (onTouch || !self.userInteractionEnabled) {
        return;
    }
    currentInterval = [self intervalWithTime:date];
    [self setNeedsDisplay];
//    if (self.delegate && [self.delegate respondsToSelector:@selector(timeLine:moveToDate:)]) {
//        [self.delegate timeLine:self moveToDate:[self currentTimeStr]];
//    }
}
#pragma mark --- 獲取時間軸指向的時間
-(NSString *)currentTimeStr{
    return [self projectTimeWithInterval:currentInterval];
}
//設置中心刻度為當前時間
- (void)timeNow{
    currentInterval = [[NSDate date] timeIntervalSince1970];
}
//寬度1所代表的秒數
- (float)secondsOfIntervalValue{
    if (scaleType == ScaleTypeBig) {
        return 6.0*60.0/intervalValue;
    }else if (scaleType == ScaleTypeSmall){
        return 60.0/intervalValue;
    }
    return 6.0*60.0/intervalValue;
}
//繪圖
-(void)drawRect:(CGRect)rect{
    //計算x=0時對應的時間戳
    float centerX = rect.size.width/2.0;
    NSTimeInterval leftInterval = currentInterval - centerX * [self secondsOfIntervalValue];
    NSTimeInterval rightInterval = currentInterval + centerX * [self secondsOfIntervalValue];
    
    //左邊第一個刻度對應的x值和時間戳
    float x;
    NSTimeInterval interval;
    if (scaleType == ScaleTypeBig) {
        float a = leftInterval/(60.0*6.0);
        interval = (((int)a) + 1) * (60.0 * 6.0);
        x = (interval - leftInterval) / [self secondsOfIntervalValue];
    }else {
        float a = leftInterval/(60.0);
        interval = (((int)a) + 1) * (60.0);
        x = (interval - leftInterval) / [self secondsOfIntervalValue];
    }
    CGContextRef contex = UIGraphicsGetCurrentContext();

    //視頻文件信息
    NSArray * array = ......;
    if (array == nil) {
        array = @[];
    }
    for (VideoInfo *info in array) {
        NSTimeInterval start = [self intervalWithTime:[NSString stringWithFormat:@"%lld",info.date]];
        NSTimeInterval end = start + info.time;
        if ((start > leftInterval && start < rightInterval) || (end > leftInterval && end < rightInterval ) || (start < leftInterval && end > rightInterval)) {
            //計算起始位置對應的x值
            float startX = (start - leftInterval)/[self secondsOfIntervalValue];
            //計算時間長度對應的寬度
            float length = (info.time)/[self secondsOfIntervalValue] + 0.5;
            if ([info.path containsString:@"SOS"]) {
                [self drawRedRect:startX Context:contex length:length];
            }else{
                [self drawGreenRect:startX Context:contex length:length];
            }
        }
    }
    
    while (x >= 0 && x <= rect.size.width) {
        int b;
        if (scaleType == ScaleTypeBig) {
            b = 60 * 6;
        }else{
            b = 60;
        }
        int rem = ((int)interval) % (b * 5);
        if (rem != 0) {//小刻度
            [self drawSmallScale:x context:contex height:rect.size.height];
        }else{//大刻度
            [self drawBigScale:x context:contex height:rect.size.height];
            [self drawText:x interval:interval context:contex height:rect.size.height];
        }
        x = x + intervalValue;
        interval = interval + b;
    }
    
    
    [self drawCenterLine:rect.size.width/2 context:contex height:rect.size.height];
}

#pragma mark --- 畫小刻度
-(void)drawSmallScale:(float)x context:(CGContextRef)ctx height:(float)height{
    // 創(chuàng)建一個新的空圖形路徑霉赡。
    CGContextBeginPath(ctx);
    
    CGContextMoveToPoint(ctx, x-0.5, height-5);
    CGContextAddLineToPoint(ctx, x-0.5, height);
    // 設置圖形的線寬
    CGContextSetLineWidth(ctx, 1.0);
    // 設置圖形描邊顏色
    CGContextSetStrokeColorWithColor(ctx, [UIColor whiteColor].CGColor);
    // 根據當前路徑冠跷,寬度及顏色繪制線
    CGContextStrokePath(ctx);
}
#pragma mark --- 畫大刻度
-(void)drawBigScale:(float)x context:(CGContextRef)ctx height:(float)height{
    // 創(chuàng)建一個新的空圖形路徑。
    CGContextBeginPath(ctx);
    
    CGContextMoveToPoint(ctx, x-0.5, height-10);
    CGContextAddLineToPoint(ctx, x-0.5, height);
    // 設置圖形的線寬
    CGContextSetLineWidth(ctx, 1.0);
    // 設置圖形描邊顏色
    CGContextSetStrokeColorWithColor(ctx, [UIColor whiteColor].CGColor);
    // 根據當前路徑趴拧,寬度及顏色繪制線
    CGContextStrokePath(ctx);
}
#pragma mark --- 畫中間線
-(void)drawCenterLine:(float)x context:(CGContextRef)ctx height:(float)height{
    // 創(chuàng)建一個新的空圖形路徑哥倔。
    CGContextBeginPath(ctx);
    
    CGContextMoveToPoint(ctx, x-0.5, 0);
    CGContextAddLineToPoint(ctx, x-0.5, height);
    // 設置圖形的線寬
    CGContextSetLineWidth(ctx, 1.0);
    // 設置圖形描邊顏色
    CGContextSetStrokeColorWithColor(ctx, [UIColor whiteColor].CGColor);
    // 根據當前路徑,寬度及顏色繪制線
    CGContextStrokePath(ctx);
}
#pragma mark --> 在刻度上標記文本
-(void)drawText:(float)x interval:(NSTimeInterval)interval context:(CGContextRef)ctx height:(float)height{
    NSString *text = [self timeWithInterval:interval];
    CGContextSetRGBFillColor(ctx, 1, 0, 0, 1);
    UIFont *font = [UIFont systemFontOfSize:10];
    NSMutableParagraphStyle *paragraph=[[NSMutableParagraphStyle alloc]init];
    paragraph.alignment=NSTextAlignmentCenter;//居中
    [text drawInRect:CGRectMake(x-15, height-21, 30, 10) withAttributes:@{NSFontAttributeName : font,NSForegroundColorAttributeName:[UIColor whiteColor],NSParagraphStyleAttributeName:paragraph}];
}
#pragma mark --- 時間戳轉 顯示的時刻文字
-(NSString *)timeWithInterval:(NSTimeInterval)interval{
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:interval];
    return [formatterScale stringFromDate:date];
}
#pragma mark --- 文字轉時間戳
-(NSTimeInterval)intervalWithTime:(NSString *)time{
    NSDate *date = [formatterProject dateFromString:time];
    return [date timeIntervalSince1970];
}
#pragma mark --- 時間戳轉 當前的時間 格式舉例: 20170814122034
-(NSString *)projectTimeWithInterval:(NSTimeInterval)interval{
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:interval];
    return [formatterProject stringFromDate:date];
}
#pragma mark --- 綠色色塊
-(void)drawGreenRect:(float)x Context:(CGContextRef)ctx length:(float)length{
    // 創(chuàng)建一個新的空圖形路徑。
    CGContextBeginPath(ctx);
    
    CGContextMoveToPoint(ctx, x, 0.0);
    CGContextAddLineToPoint(ctx, x+length, 0.0);
    CGContextAddLineToPoint(ctx, x+length, 25.0);
    CGContextAddLineToPoint(ctx, x, 25.0);
    // 關閉并終止當前路徑的子路徑,并在當前點和子路徑的起點之間追加一條線
    CGContextClosePath(ctx);
    // 設置當前視圖填充色(淺灰色)
    CGContextSetFillColorWithColor(ctx, [UIColor colorWithRed:0/255.0
                                                        green:139.0/255.0
                                                         blue:52.0/255.0
                                                        alpha:0.90].CGColor);
    // 繪制當前路徑區(qū)域
    CGContextFillPath(ctx);
    
}
#pragma mark --- 綠色色塊
-(void)drawRedRect:(float)x Context:(CGContextRef)ctx length:(float)length{
    // 創(chuàng)建一個新的空圖形路徑之众。
    CGContextBeginPath(ctx);
    
    CGContextMoveToPoint(ctx, x, 0.0);
    CGContextAddLineToPoint(ctx, x+length, 0.0);
    CGContextAddLineToPoint(ctx, x+length, 25.0);
    CGContextAddLineToPoint(ctx, x, 25.0);
    // 關閉并終止當前路徑的子路徑,并在當前點和子路徑的起點之間追加一條線
    CGContextClosePath(ctx);
    // 設置當前視圖填充色(淺灰色)
    CGContextSetFillColorWithColor(ctx, [UIColor colorWithRed:233.0/255.0
                                                        green:64.0/255.0
                                                         blue:73.0/255.0
                                                        alpha:1.0].CGColor);
    // 繪制當前路徑區(qū)域
    CGContextFillPath(ctx);
    
}
@end
使用

使用時直接在storyboard或者xib中拖一個view設置好約束,然后將它設置為ZFTimeLine即可.

因為項目用到,而且這種效果的資料不太好找,所以在解決之后記錄和分享一下.
也方便我以后處理繪圖需求時用作參考.

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末依许,一起剝皮案震驚了整個濱河市酝枢,隨后出現的幾起案子,更是在濱河造成了極大的恐慌悍手,老刑警劉巖帘睦,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現場離奇詭異坦康,居然都是意外死亡竣付,警方通過查閱死者的電腦和手機,發(fā)現死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門滞欠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來古胆,“玉大人,你說我怎么就攤上這事筛璧∫菀铮” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵夭谤,是天一觀的道長棺牧。 經常有香客問我,道長朗儒,這世上最難降的妖魔是什么颊乘? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮醉锄,結果婚禮上乏悄,老公的妹妹穿的比我還像新娘。我一直安慰自己恳不,他們只是感情好檩小,可當我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布炸庞。 她就那樣靜靜地躺著坏怪,像睡著了一般掂榔。 火紅的嫁衣襯著肌膚如雪坟桅。 梳的紋絲不亂的頭發(fā)上胁孙,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天拳昌,我揣著相機與錄音常摧,去河邊找鬼珊豹。 笑死鸵荠,一個胖子當著我的面吹牛冕茅,可吹牛的內容都是我干的。 我是一名探鬼主播蛹找,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼姨伤,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了庸疾?” 一聲冷哼從身側響起乍楚,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎届慈,沒想到半個月后徒溪,有當地人在樹林里發(fā)現了一具尸體忿偷,經...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年臊泌,在試婚紗的時候發(fā)現自己被綠了鲤桥。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡渠概,死狀恐怖茶凳,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情播揪,我是刑警寧澤贮喧,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站猪狈,受9級特大地震影響箱沦,放射性物質發(fā)生泄漏。R本人自食惡果不足惜罪裹,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一饱普、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧状共,春花似錦套耕、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至碾牌,卻和暖如春康愤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背舶吗。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工征冷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人誓琼。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓检激,卻偏偏與公主長得像,于是被迫代替她去往敵國和親腹侣。 傳聞我的和親對象是個殘疾皇子叔收,可洞房花燭夜當晚...
    茶點故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內容

  • 先看效果 可左右拖動和通過縮放來實現不同刻度模式的切換,下面代碼只使用了兩種刻度模式.綠色部分代表有錄制的視頻數據...
    夢里風吹過閱讀 3,552評論 3 4
  • Matplotlib 入門教程 來源:Introduction to Matplotlib and basic l...
    布客飛龍閱讀 31,766評論 5 162
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,510評論 25 707
  • 卷縮在床沿,熱水袋還是離不開手傲隶,棉襖棉褲饺律,還是擋不住窗外淅淅瀝瀝的小雨帶來的陰冷,怎么也感覺不到已經是春天了...
    黃一楠閱讀 216評論 0 0
  • 松潘縣隸屬于四川省阿壩州東北部跺株,距成都335公里复濒,除黃龍脖卖、牟尼溝風景區(qū)外,還有一著名景點:松坪溝風景區(qū)巧颈。這里...
    亦莼閱讀 1,265評論 0 0