TCScrollTextView.h 329 B

123456789101112
  1. #import <UIKit/UIKit.h>
  2. @interface TCScrollTextView : UIView
  3. @property (nonatomic, assign) CGFloat speed;
  4. @property (nonatomic, copy) NSString * text;
  5. @property (nonatomic, strong) UIFont * font;
  6. @property (nonatomic, copy) NSAttributedString *textAttributedString;
  7. @property (nonatomic, strong) UILabel * contentLabel;
  8. @end