mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-29 02:25:39 -05:00
19 lines
310 B
Objective-C
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
|