XLDot.h 442 B

1234567891011121314151617181920212223242526
  1. //
  2. // XLDot.h
  3. // XLDotLoadingDemo
  4. //
  5. // Created by Apple on 2017/1/28.
  6. // Copyright © 2017年 Apple. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger,DotDitection)
  10. {
  11. DotDitectionLeft = -1,
  12. DotDitectionRight = 1,
  13. };
  14. @interface XLDot : UIView
  15. //移动方向 就两种 左、右
  16. @property (nonatomic,assign) DotDitection direction;
  17. //字体颜色
  18. @property (nonatomic,strong) UIColor *textColor;
  19. @end