22 lines
464 B
Objective-C
22 lines
464 B
Objective-C
//
|
|
// HBViewController.h
|
|
// QinJiuTV
|
|
//
|
|
// Created by 秦九 on 2024/4/28.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <HBDNavigationBar/HBDNavigationBar.h>
|
|
#import <HBDNavigationBar/HBDNavigationController.h>
|
|
#import <HBDNavigationBar/UIViewController+HBD.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HBViewController : UIViewController
|
|
@property (assign, nonatomic) BOOL presentNavigation;
|
|
|
|
- (void)backController:(UIButton * _Nullable)sender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|