mop-flutter-sdk/ios/Classes/Utils/MOPTools.h

24 lines
446 B
Dart
Raw Normal View History

2020-02-27 17:21:45 +08:00
//
// 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;
2021-12-22 17:32:18 +08:00
+ (UIColor *)colorWithRGBHex:(UInt32)hex;
+ (UIColor *)fat_colorWithHexString:(NSString *)hexColor;
2022-11-25 10:14:14 +08:00
+ (BOOL)fat_currentLanguageIsEn;
2020-02-27 17:21:45 +08:00
@end
NS_ASSUME_NONNULL_END