NSDictionary-Additions.h 302 B

1234567891011121314151617
  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. - (BOOL)hasKey:(NSString *)key;
  11. - (NSString*)jsonStringWithPrettyPrint:(BOOL) prettyPrint;
  12. @end