12345678910111213141516171819202122232425262728293031323334 |
- //
- // BaseViewController.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/9/20.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BaseViewController : UIViewController
-
- /// 下方工具类高度
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *customNavigationHeight;
- /// 没有数据提示
- @property (strong, nonatomic) UILabel *noDataMessageLbl;
- - (void)addNoDataMessageToViewCenter:(UIView *)contentView message:(NSString *)message;
- - (void)changeMessageStatusWithNumber:(NSInteger)number;
- //给外部提供一个可调用返回上一级的方法
- -(void)backToUpVcWithDidBackBtn;
- //给外部提供一个可调用打开菜单View的方法
- -(void)openMenuViewWithDidMenuBtn;
- -(IBAction)backAction:(id)sender;
- -(IBAction)menuAction:(id)sender;
- @end
- NS_ASSUME_NONNULL_END
|