2021-04-07 16:20:41 +08:00
|
|
|
//
|
|
|
|
// NSDictionary+JSON.h
|
|
|
|
// NativeApp
|
|
|
|
//
|
|
|
|
// Created by JiangJiahao on 2018/10/11.
|
|
|
|
// Copyright © 2018 JiangJiahao. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface NSDictionary (JSON)
|
|
|
|
- (NSString *)tds_jsonString;
|
2021-05-14 19:40:33 +08:00
|
|
|
- (NSString *)tds_jsonStringWithoutOptions:(NSJSONWritingOptions)opt;
|
2021-04-07 16:20:41 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|