19 lines
311 B
Dart
19 lines
311 B
Dart
//
|
|
// MOPTools.h
|
|
// mop
|
|
//
|
|
// Created by 杨涛 on 2020/2/27.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MOPTools : NSObject
|
|
+ (UIViewController *)topViewController;
|
|
+ (UIViewController *)topViewController:(UIViewController *)rootViewController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|