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