18 lines
343 B
Objective-C
18 lines
343 B
Objective-C
//
|
|
// NSDictionary+Customer.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by Hl Zhang on 2023/9/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSDictionary (Customer)
|
|
+(NSDictionary *)parseJSONString:(NSString *)jsonString;
|
|
+(NSString *)toJSONString: (NSDictionary *) json minify:(BOOL) minify;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|