// // UIViewController+NavRegister.h // PBSDK // // Created by LStar on 2025/1/16. // #import NS_ASSUME_NONNULL_BEGIN @interface UIViewController (NavRegister) /** 需要自动隐藏NavigationBar 默认是no */ @property(assign,nonatomic)BOOL hiddenNavigationBar; /* 需要用于单独修改某个视图控制器状态栏的颜色 */ @property(assign,nonatomic)BOOL transformStatusBarStyle; ///当页面进入堆栈的时候是需要被移除的 @property (nonatomic, assign) BOOL isNeedToClosed; - (void)closeCurrentAndPushTo:(UIViewController *)nextVC; /// 移除所有需要关闭的vc /// @param nextVC 需要跳转的下一个vc /// @param animated 动画 - (void)removeAllThatNeedToBeClosedAndPushTo:(UIViewController *)nextVC animated:(BOOL)animated; ///返回上一蹭页面 - (void)back; @end NS_ASSUME_NONNULL_END