VerScrollTextView.h 443 B

1234567891011121314151617181920212223242526
  1. //
  2. // VerScrollTextView.h
  3. // ScrollMarqueeView
  4. //
  5. // Created by admin on 2021/1/28.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface VerScrollTextView : UIView<CAAnimationDelegate>
  10. @property(nonatomic,strong)UIView *verBgView;
  11. @property(nonatomic,strong)UILabel *txtLabel;
  12. @property(nonatomic,strong)NSMutableArray *sxArry;
  13. //显示到第几个
  14. @property(nonatomic,assign)NSInteger arrNum;
  15. @end
  16. NS_ASSUME_NONNULL_END