RAActivityIndicator+Show.h 373 B

123456789101112131415161718192021
  1. //
  2. // RAActivityIndicator+Show.h
  3. // Test
  4. //
  5. // Created by Jack on 2019/2/1.
  6. // Copyright © 2019 Jack Template. All rights reserved.
  7. //
  8. #import "RAActivityIndicator.h"
  9. @interface RAActivityIndicator (Show)
  10. + (instancetype)activityIndicatorShowOnView:(UIView *)view withType:(RAActivityType)type;
  11. - (void)dismiss;
  12. - (void)dismiss:(void(^)(void))completion;
  13. @end