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