| 1234567891011121314151617 |
- //
- // NSDictionary-Additions.h
- // JasonDevelop
- //
- // Created by Jason Lee on 10/29/14.
- // Copyright (c) jasondevelop. All rights reserved.
- //
- @import Foundation;
- @interface NSDictionary (Additions)
- - (BOOL)hasKey:(NSString *)key;
- - (NSString*)jsonStringWithPrettyPrint:(BOOL) prettyPrint;
- @end
|