NSDictionary-Additions.h 270 B

12345678910111213141516
  1. //
  2. // NSDictionary-Additions.h
  3. // JasonDevelop
  4. //
  5. // Created by Jason Lee on 10/29/14.
  6. // Copyright (c) jasondevelop. All rights reserved.
  7. //
  8. @import Foundation;
  9. @interface NSDictionary (Additions)
  10. -(NSString*) jsonStringWithPrettyPrint:(BOOL) prettyPrint;
  11. @end