RAActivityIndicator.h 432 B

123456789101112131415161718192021
  1. //
  2. // RAActivityIndicator.h
  3. // Test
  4. //
  5. // Created by Jack on 2019/2/1.
  6. // Copyright © 2019 Jack Template. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger, RAActivityType) {
  10. RAActivityTypeDot,
  11. RAActivityTypeSlash
  12. };
  13. @interface RAActivityIndicator : UIView
  14. + (instancetype)activityIndicatorWithType:(RAActivityType)type;/// 大小不可变,改变位置可调用setCenter:方法
  15. @end