RDSBaseTableViewController.h 1012 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RDSBaseTableViewController.h
  3. // SmartLightForBigFish
  4. //
  5. // Created by coderYK on 2017/8/7.
  6. // Copyright © 2017年 RD-iOS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <MJRefresh/MJRefresh.h>
  10. @interface RDSBaseTableViewController : UITableViewController
  11. @property (nonatomic, weak) UIActivityIndicatorView *juHua;
  12. - (void)rds_refresh;
  13. - (void)rds_showJuHuaOnWindow;
  14. - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated;
  15. //** 弹窗提示信息,单选确定操作*/
  16. - (void)rds_alertTitle:(NSString *)title message:(NSString *)message doneAction:(void(^)(void))doneActionBlock;
  17. //** 弹窗提示信息,可选操作 确定 取消*/
  18. - (void)rds_alertTitle:(NSString *)title message:(NSString *)message doneAction:(void(^)(void))doneActionBlock cancelAction:(void(^)(void))cancelActionBlock;
  19. - (void)rds_alertInputTitle:(NSString *)title msg:(NSString *)msg placeholder:(NSString *)placeholder doneAction:(void(^)(NSString *name))doneActionBlock;
  20. @end