22 lines
353 B
C
22 lines
353 B
C
|
|
//
|
||
|
|
// NSDictionary+Json.h
|
||
|
|
// Meet
|
||
|
|
//
|
||
|
|
// Created by ko1o, on 2019/4/2.
|
||
|
|
// Copyright © 2019年 Food. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface NSDictionary (Json)
|
||
|
|
|
||
|
|
- (NSString *)convertToJsonString;
|
||
|
|
|
||
|
|
+ (NSDictionary *)dictionaryWithJsonString:(NSString *)jsonString;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|