You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //
- // FlutterAlibcTools.h
- // flutter_alibc
- //
- // Created by 吴兴 on 2019/8/29.
- //
-
- #import <Foundation/Foundation.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
- @interface FlutterAlibcTools : NSObject
- //判断String是否为空
- + (BOOL)isNil:(NSString *)string;
- //Json转Dic
- + (NSDictionary *)dictionaryWithJsonString:(NSString *)jsonString;
- //判断是不是null,是就转nil
- + (id)nullToNil:(id)obj;
- //改变类型
- +(id)changeType:(id)myObj;
- @end
-
- NS_ASSUME_NONNULL_END
|