15 lines
275 B
Objective-C
15 lines
275 B
Objective-C
//
|
|
// TDGiftLabel.h
|
|
// liveDemo
|
|
//
|
|
// Created by tuandai on 2017/4/24.
|
|
// Copyright © 2017年 tuandai. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TDGiftLabel : UILabel
|
|
@property (nonatomic, assign) NSInteger current;
|
|
- (void)anima:(NSInteger)num;
|
|
@end
|