FWZViewController.h 567 B

12345678910111213141516171819202122
  1. //
  2. // FWZViewController.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/8.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 分装基类 白色导航条 左边第二个按钮弹出 菜单栏
  11. @interface FWZViewController : BaseViewController
  12. @property (nonatomic, strong) TDNavigationBar *myNavigationBar;
  13. @property (nonatomic, strong) UIView *myBackImageView;
  14. - (void)secondBarButtonItems:(TDButton *)sender;
  15. - (void)rightButtonAction:(nonnull TDButton *)sender;
  16. @end
  17. NS_ASSUME_NONNULL_END