JXWaitingView.h 436 B

123456789101112131415161718192021
  1. // shiku_im
  2. //
  3. // Created by flyeagleTang on 14-5-31.
  4. // Copyright (c) 2014年 Reese. All rights reserved.
  5. //
  6. #import <UIKit/UIKit.h>
  7. #import "JXImageView.h"
  8. @interface JXWaitingView : UIView{
  9. UIActivityIndicatorView* _aiv;
  10. UIImageView* _iv;
  11. UILabel* _title;
  12. }
  13. - (id)initWithTitle:(NSString*)s;
  14. -(void)start:(NSString*)s;
  15. -(void)stop;
  16. +(JXWaitingView*)sharedInstance;
  17. @property (nonatomic,assign) BOOL isShowing;
  18. @end