BaseTableViewController.h 521 B

12345678910111213141516171819
  1. //
  2. // BaseTableViewController.h
  3. // IBOSS
  4. //
  5. // Created by iHope on 14-7-7.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CommonCrypto/CommonDigest.h"
  10. @interface BaseTableViewController : UITableViewController
  11. @property(nonatomic,strong) MBProgressHUD *hud;
  12. -(void)showLoading;
  13. -(void) hideLoading;
  14. -(void)showLoadingText:(NSString*)text;
  15. -(void)showAlertViewText:(NSString *)text;
  16. -(void)showAlertViewBackText:(NSString *)text;
  17. - (NSString *) md5:(NSString *)str;
  18. @end