RABaseViewController.h 448 B

1234567891011121314151617181920212223
  1. //
  2. // RABaseViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/1.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RABaseViewController : UIViewController
  10. @property (nonatomic,assign) BOOL loading;
  11. + (NSString *)storyboardID;
  12. + (instancetype)viewControllerFromStoryboard;
  13. - (void)showAlertTilte:(NSString *)title message:(NSString *)msg;
  14. - (void)showAlert:(NSString *)msg;
  15. @end