BBATextAnimationView.h
566 Bytes
//
// BBATextAnimationView.h
// TextAnimation
//
// Created by lixin44 on 2017/11/14.
// Copyright © 2017年 baidu. All rights reserved.
// 10.1版本 点赞数动效
#import <UIKit/UIKit.h>
@interface BBATextAnimationView : UIView
@property (nonatomic, strong) UIColor *textColor;
@property (nonatomic, strong) UIFont *textFont;
@property (nonatomic, copy) NSString *text;
- (void)setText:(NSString *)text;
- (void)setText:(NSString *)text animated:(BOOL)animated;
- (void)setText:(NSString *)text animated:(BOOL)animated textColor:(UIColor *)color;
@end