mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-29 10:35:59 -05:00
20 lines
310 B
C
20 lines
310 B
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
|