Hibit_iOS/HiBit/Project/Player/Common/GKRotationManager/GKLandscapeNavigationController.h
2024-06-11 10:51:38 +08:00

26 lines
660 B
Objective-C
Executable File

//
// GKLandscapeNavigationController.h
// Example
//
// Created by QuintGao on 2023/3/31.
// Copyright © 2023 QuintGao. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol GKLandscapeNavigationControllerDelegate;
@interface GKLandscapeNavigationController : UINavigationController
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController delegate:(nullable id<GKLandscapeNavigationControllerDelegate>)delegate;
@end
@protocol GKLandscapeNavigationControllerDelegate <NSObject>
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated;
@end
NS_ASSUME_NONNULL_END