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