XG_RootViewController.h 639 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // XG_RootViewController.h
  3. // MyApp
  4. //
  5. // Created by huxinguang on 2018/9/11.
  6. // Copyright © 2018年 huxinguang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XG_BarButton.h"
  10. #import "XG_TitleView.h"
  11. @interface XG_RootViewController : UIViewController
  12. @property (nonatomic, strong) XG_TitleView *titleView;
  13. @property (nonatomic, strong) XG_BarButton *leftBarButton;
  14. @property (nonatomic, strong) XG_BarButton *rightBarButton;
  15. @property (nonatomic, assign) BOOL isStatusBarHidden;
  16. - (void)configTitleView;
  17. - (void)configLeftBarButtonItem;
  18. - (void)configRightBarButtonItem;
  19. - (void)onLeftBarButtonClick;
  20. @end