BaseTableViewController.h 556 B

12345678910111213141516171819202122
  1. //
  2. // BaseTableViewController.h
  3. // IBOSS
  4. //
  5. // Created by iHope on 14-7-7.
  6. // Copyright (c) 2017年 沈阳东科云信软件有限公司. 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