19 lines
342 B
Objective-C
19 lines
342 B
Objective-C
//
|
|
// NSDictionary+BVJSONString.h
|
|
// Smash
|
|
//
|
|
// Created by Luca Beretta on 24/03/2019.
|
|
// Copyright © 2019 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSDictionary (BVJSONString)
|
|
-(NSString*) bv_jsonStringWithPrettyPrint:(BOOL) prettyPrint;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|