scratchjr/ios/ScratchJr/src/NSDictionary+JSONString.h
2021-04-05 08:09:32 +08:00

19 lines
310 B
Objective-C

//
// NSDictionary+JSONString.h
// ScratchJr Free
//
// Created by Yueyu Zhao on 2021/4/4.
// Copyright © 2021 Scratch Foundation. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSDictionary(String)
- (NSString *) jsonString;
@end
NS_ASSUME_NONNULL_END