12345678910111213141516171819202122232425262728293031323334 |
- #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;
- -(void)openMenuViewWithDidMenuBtn;
- -(IBAction)backAction:(id)sender;
- -(IBAction)menuAction:(id)sender;
- @end
- NS_ASSUME_NONNULL_END
|