CustomLoadingView.h 405 B

123456789101112131415161718192021222324
  1. //
  2. // CustomLoadingView.h
  3. // JasonDevelop
  4. //
  5. // Created by Jason Lee on 10/23/14.
  6. // Copyright (c) jasondevelop. All rights reserved.
  7. //
  8. @interface CustomLoadingView : UIView
  9. /**
  10. 인스턴스를 생성하고, 로딩 애니메이션을 시작함.
  11. @param superView
  12. 부모 뷰
  13. */
  14. + (void)showWithView:(UIView *)superView;
  15. /**
  16. 로딩뷰를 멈추고 인스턴스를 삭제
  17. */
  18. + (void)hide;
  19. @end