XLDotLoading.h 328 B

1234567891011121314151617181920212223
  1. //
  2. // XLDotLoading.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. @interface XLDotLoading : UIView
  10. //显示方法
  11. +(void)showInView:(UIView*)view;
  12. //隐藏方法
  13. +(void)hideInView:(UIView*)view;
  14. -(void)start;
  15. -(void)stop;
  16. @end