Files
yinmeng-ios/xplan-ios/Base/Tool/NSObject/NSObject+JSONString.m
2021-10-21 17:59:11 +08:00

22 lines
346 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];
}
///转成字典或者数组
- (id)JSONObject {
return [self mj_JSONObject];
}
@end