NSDictionary+Json.h 587 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // NSDictionary+Json.h
  3. // AdAdmobSDK
  4. //
  5. // Created by 蒋龙 on 2019/9/2.
  6. // Copyright © 2019 com.YouLoft.CQ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSDictionary (Json)
  11. /**
  12. NSDictionary 转 jsonString
  13. @param jsonDic json字典
  14. @return json字符串
  15. */
  16. + (NSString *)convertNSDictionaryToJsonString:(NSDictionary *)jsonDic;
  17. /**
  18. jsonString 转 NSDictionary
  19. @param jsonString json字符串
  20. @return 字典
  21. */
  22. + (NSDictionary *)convertJsonStringToNSDictionary:(NSString *)jsonString;
  23. @end
  24. NS_ASSUME_NONNULL_END