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