2020-02-22 15:38:54 +04:00

12 lines
275 B
Objective-C

#import <UIKit/UIKit.h>
@interface TGGradientLabel : UIView
@property (nonatomic, strong) UIFont *font;
@property (nonatomic, strong) NSString *text;
@property (nonatomic) int topColor;
@property (nonatomic) int bottomColor;
@property (nonatomic) UIColor *textColor;
@end