22 lines
335 B
Objective-C
22 lines
335 B
Objective-C
|
|
|
|
// Created by 卫明何 on 2018/8/9.
|
|
// Copyright © 2018年 YUIMI. All rights reserved.
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface XCCurrentVCStackManager : NSObject
|
|
|
|
+ (instancetype)shareManager;
|
|
|
|
|
|
- (UINavigationController *)currentNavigationController;
|
|
|
|
|
|
- (UIViewController *)getCurrentVC;
|
|
|
|
|
|
@end
|