JXWaitView.h 414 B

12345678910111213141516171819202122
  1. //
  2. // JXWaitView.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 17/1/13.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXWaitView : UIActivityIndicatorView{
  10. UIView* _parent;
  11. }
  12. -(id)initWithParent:(UIView*)parent;
  13. -(void)start;
  14. -(void)stop;
  15. -(void)adjust;
  16. @property (nonatomic, strong,setter=setParent:) UIView* parent;//可动态改变父亲
  17. @end