You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
346 B
18 lines
346 B
//
|
|
// MainNav.h
|
|
//
|
|
//
|
|
// Created by Linktop on 2021/4/20.
|
|
// Copyright © 2021 linktop. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MainNav : UINavigationController
|
|
-(instancetype)initWithRootViewController:(UIViewController *)rootViewController ShowNavBar:(BOOL)show;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|