xplan ios start

This commit is contained in:
zu
2021-09-06 18:47:38 +08:00
commit cbc85a02d2
103 changed files with 5818 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
//
// BaseViewController.h
// xplan-ios
//
// Created by zu on 2021/8/31.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface BaseViewController : UIViewController
/**
显示/隐藏导航
*/
- (void)hideNavigationBar;
/**
隐藏导航栏
*/
- (void)showNavigationBar;
/**
显示/隐藏状态栏
*/
- (void)showStatusBar;
/**
隐藏状态栏
*/
- (void)hideStatusBar;
@end
NS_ASSUME_NONNULL_END