scratchjr/ios/ScratchJr/src/NSDictionary+JSONString.h

20 lines
310 B
C
Raw Normal View History

2021-04-04 20:09:32 -04:00
//
// 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