17 lines
266 B
Objective-C
17 lines
266 B
Objective-C
//
|
|
// NSObject+JSONString.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/26.
|
|
//
|
|
|
|
#import "NSObject+JSONString.h"
|
|
#import <MJExtension/MJExtension.h>
|
|
@implementation NSObject (JSONString)
|
|
|
|
- (NSString *)objectToJSONString {
|
|
return [self mj_JSONString];
|
|
}
|
|
|
|
@end
|