123456789101112 |
- #import <UIKit/UIKit.h>
- @interface TCScrollTextView : UIView
- @property (nonatomic, assign) CGFloat speed;
- @property (nonatomic, copy) NSString * text;
- @property (nonatomic, strong) UIFont * font;
- @property (nonatomic, copy) NSAttributedString *textAttributedString;
- @property (nonatomic, strong) UILabel * contentLabel;
- @end
|