20 lines
458 B
Objective-C
20 lines
458 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIViewController (getCurrentVC)<UIViewControllerAnimatedTransitioning>
|
|
|
|
+ (UIViewController *)jsd_getCurrentViewController;
|
|
|
|
+ (UIViewController *)jsd_getRootViewController;
|
|
|
|
+ (UIViewController *)getCurrentVCWithCurrentView:(UIView *)currentView;
|
|
|
|
+(UITabBarController *)currentTtabarController;
|
|
|
|
+(UINavigationController *)currentTabbarSelectedNavigationController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|