Files
2026-07-13 12:35:01 +08:00

26 lines
613 B
Objective-C

//
// TLExpressionDownloadButton.h
// TLChat
//
// Created by 李伯坤 on 2018/1/2.
// Copyright © 2018年 李伯坤. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSInteger, TLExpressionDownloadButtonStatus) {
TLExpressionDownloadButtonStatusNet,
TLExpressionDownloadButtonStatusDownloading,
TLExpressionDownloadButtonStatusDownloaded,
};
@interface TLExpressionDownloadButton : UIView
@property (nonatomic, assign) TLExpressionDownloadButtonStatus status;
@property (nonatomic, assign) CGFloat progress;
@property (nonatomic, copy) void (^downloadButtonClick)();
@end