iOS 第三方库 - MJExtension

https://github.com/CoderMJLee/MJExtension
MJExtension是一套字典和模型之间互相转换的超轻量级框架
只需要一行代码,就能实现模型的所有属性进行Coding(归档和解档)
JSON –> Model、Core Data Model
JSONString –> Model、Core Data Model
Model、Core Data Model –> JSON
JSON Array –> Model Array、Core Data Model Array
JSONString –> Model Array、Core Data Model Array
Model Array、Core Data Model Array –> JSON Array

一、使用步骤
1.下载MJExtension,导入工程。

2.导入主头文件

import “MJExtension.h”

3.JSON转模型
User *user = [User mj_objectWithKeyValues:dict];
二、基本属性

三、代码示例
Examples 【示例】
JSON -> Model
JSONString -> Model
Model contains model
Model contains model-array
Model name - JSON key mapping
JSON array -> model array
Model -> JSON
Model array -> JSON array
Core Data
Coding
Camel -> underline
NSString -> NSDate, nil -> @””
More use cases
Examples【示例】

The most simple JSON -> Model【最简单的字典转模型】

typedefenum {
SexMale,
SexFemale
} Sex;

@interfaceUser : NSObject@property (copy, nonatomic) NSString *name;
@property (copy, nonatomic) NSString *icon;
@property (assign, nonatomic) unsignedint age;
@property (copy, nonatomic) NSString *height;
@property (strong, nonatomic) NSNumber *money;
@property (assign, nonatomic) Sex sex;
@property (assign, nonatomic, getter=isGay) BOOL gay;
@end/*************************************/NSDictionary *dict = @{
@”name” : @”Jack”,
@”icon” : @”lufy.png”,
@”age” : @20,
@”height” : @”1.55”,
@”money” : @100.9,
@”sex” : @(SexFemale),
@”gay” : @”true”// @”gay” : @”1”// @”gay” : @”NO”
};

// JSON -> User
User *user = [User mj_objectWithKeyValues:dict];

NSLog(@”name=%@, icon=%@, age=%zd, height=%@, money=%@, sex=%d, gay=%d”, user.name, user.icon, user.age, user.height, user.money, user.sex, user.gay);
// name=Jack, icon=lufy.png, age=20, height=1.550000, money=100.9, sex=1
JSONString -> Model【JSON字符串转模型】

// 1.Define a JSONStringNSString *jsonString = @”{\”name\”:\”Jack\”, \”icon\”:\”lufy.png\”, \”age\”:20}”;

// 2.JSONString -> User
User *user = [User mj_objectWithKeyValues:jsonString];

// 3.Print user’s propertiesNSLog(@”name=%@, icon=%@, age=%d”, user.name, user.icon, user.age);
// name=Jack, icon=lufy.png, age=20
Model contains model【模型中嵌套模型】

@interfaceStatus : NSObject@property (copy, nonatomic) NSString *text;
@property (strong, nonatomic) User *user;
@property (strong, nonatomic) Status *retweetedStatus;
@end/*************************************/NSDictionary *dict = @{
@”text” : @”Agree!Nice weather!”,
@”user” : @{
@”name” : @”Jack”,
@”icon” : @”lufy.png”
},
@”retweetedStatus” : @{
@”text” : @”Nice weather!”,
@”user” : @{
@”name” : @”Rose”,
@”icon” : @”nami.png”
}
}
};

// JSON -> Status
Status *status = [Status mj_objectWithKeyValues:dict];

NSString *text = status.text;
NSString *name = status.user.name;
NSString *icon = status.user.icon;
NSLog(@”text=%@, name=%@, icon=%@”, text, name, icon);
// text=Agree!Nice weather!, name=Jack, icon=lufy.pngNSString *text2 = status.retweetedStatus.text;
NSString *name2 = status.retweetedStatus.user.name;
NSString *icon2 = status.retweetedStatus.user.icon;
NSLog(@”text2=%@, name2=%@, icon2=%@”, text2, name2, icon2);
// text2=Nice weather!, name2=Rose, icon2=nami.png
Model contains model-array【模型中有个数组属性,数组里面又要装着其他模型】

@interfaceAd : NSObject@property (copy, nonatomic) NSString *image;
@property (copy, nonatomic) NSString *url;
@end@interfaceStatusResult : NSObject/* Contatins status model /@property (strong, nonatomic) NSMutableArray *statuses;
/* Contatins ad model /@property (strong, nonatomic) NSArray *ads;
@property (strong, nonatomic) NSNumber *totalNumber;
@end/*************************************/// Tell MJExtension what type model will be contained in statuses and ads.
[StatusResult mj_setupObjectClassInArray:^NSDictionary *{
return @{
@”statuses” : @”Status”,
// @”statuses” : [Status class],@”ads” : @”Ad”// @”ads” : [Ad class]
};
}];
// Equals: StatusResult.m implements +mj_objectClassInArray method.NSDictionary *dict = @{
@”statuses” : @[
@{
@”text” : @”Nice weather!”,
@”user” : @{
@”name” : @”Rose”,
@”icon” : @”nami.png”
}
},
@{
@”text” : @”Go camping tomorrow!”,
@”user” : @{
@”name” : @”Jack”,
@”icon” : @”lufy.png”
}
}
],
@”ads” : @[
@{
@”image” : @”ad01.png”,
@”url” : @”http://www.ad01.com
},
@{
@”image” : @”ad02.png”,
@”url” : @”http://www.ad02.com
}
],
@”totalNumber” : @”2014”
};

// JSON -> StatusResult
StatusResult *result = [StatusResult mj_objectWithKeyValues:dict];

NSLog(@”totalNumber=%@”, result.totalNumber);
// totalNumber=2014// Printingfor (Status *status in result.statuses) {
NSString *text = status.text;
NSString *name = status.user.name;
NSString *icon = status.user.icon;
NSLog(@”text=%@, name=%@, icon=%@”, text, name, icon);
}
// text=Nice weather!, name=Rose, icon=nami.png// text=Go camping tomorrow!, name=Jack, icon=lufy.png// Printingfor (Ad *ad in result.ads) {
NSLog(@”image=%@, url=%@”, ad.image, ad.url);
}
// image=ad01.png, url=http://www.ad01.com// image=ad02.png, url=http://www.ad02.com
Model name - JSON key mapping【模型中的属性名和字典中的key不相同(或者需要多级映射)】

@interfaceBag : NSObject@property (copy, nonatomic) NSString *name;
@property (assign, nonatomic) double price;
@end@interfaceStudent : NSObject@property (copy, nonatomic) NSString *ID;
@property (copy, nonatomic) NSString *desc;
@property (copy, nonatomic) NSString *nowName;
@property (copy, nonatomic) NSString *oldName;
@property (copy, nonatomic) NSString *nameChangedTime;
@property (strong, nonatomic) Bag *bag;
@end/*************************************/// How to map
[Student mj_setupReplacedKeyFromPropertyName:^NSDictionary *{
return @{
@”ID” : @”id”,
@”desc” : @”desciption”,
@”oldName” : @”name.oldName”,
@”nowName” : @”name.newName”,
@”nameChangedTime” : @”name.info[1].nameChangedTime”,
@”bag” : @”other.bag”
};
}];
// Equals: Student.m implements +mj_replacedKeyFromPropertyName method.NSDictionary *dict = @{
@”id” : @”20”,
@”desciption” : @”kids”,
@”name” : @{
@”newName” : @”lufy”,
@”oldName” : @”kitty”,
@”info” : @[
@”test-data”,
@{
@”nameChangedTime” : @”2013-08”
}
]
},
@”other” : @{
@”bag” : @{
@”name” : @”a red bag”,
@”price” : @100.7
}
}
};

// JSON -> Student
Student *stu = [Student mj_objectWithKeyValues:dict];

// PrintingNSLog(@”ID=%@, desc=%@, oldName=%@, nowName=%@, nameChangedTime=%@”,
stu.ID, stu.desc, stu.oldName, stu.nowName, stu.nameChangedTime);
// ID=20, desc=kids, oldName=kitty, nowName=lufy, nameChangedTime=2013-08NSLog(@”bagName=%@, bagPrice=%f”, stu.bag.name, stu.bag.price);
// bagName=a red bag, bagPrice=100.700000
JSON array -> model array【将一个字典数组转成模型数组】

NSArray *dictArray = @[
@{
@”name” : @”Jack”,
@”icon” : @”lufy.png”
},
@{
@”name” : @”Rose”,
@”icon” : @”nami.png”
}
];

// JSON array -> User arrayNSArray *userArray = [User mj_objectArrayWithKeyValuesArray:dictArray];

// Printingfor (User *user in userArray) {
NSLog(@”name=%@, icon=%@”, user.name, user.icon);
}
// name=Jack, icon=lufy.png// name=Rose, icon=nami.png
Model -> JSON【将一个模型转成字典】

// New model
User *user = [[User alloc] init];
user.name = @”Jack”;
user.icon = @”lufy.png”;

Status *status = [[Status alloc] init];
status.user = user;
status.text = @”Nice mood!”;

// Status -> JSONNSDictionary *statusDict = status.mj_keyValues;
NSLog(@”%@”, statusDict);
/* { text = “Nice mood!”; user = { icon = “lufy.png”; name = Jack; }; } */// More complex situation
Student *stu = [[Student alloc] init];
stu.ID = @”123”;
stu.oldName = @”rose”;
stu.nowName = @”jack”;
stu.desc = @”handsome”;
stu.nameChangedTime = @”2018-09-08”;

Bag *bag = [[Bag alloc] init];
bag.name = @”a red bag”;
bag.price = 205;
stu.bag = bag;

NSDictionary *stuDict = stu.mj_keyValues;
NSLog(@”%@”, stuDict);
/{ ID = 123; bag = { name = “\U5c0f\U4e66\U5305”; price = 205; }; desc = handsome; nameChangedTime = “2018-09-08”; nowName = jack; oldName = rose;} /
Model array -> JSON array【将一个模型数组转成字典数组】

// New model array
User *user1 = [[User alloc] init];
user1.name = @”Jack”;
user1.icon = @”lufy.png”;

User *user2 = [[User alloc] init];
user2.name = @”Rose”;
user2.icon = @”nami.png”;

NSArray *userArray = @[user1, user2];

// Model array -> JSON arrayNSArray *dictArray = [User mj_keyValuesArrayWithObjectArray:userArray];
NSLog(@”%@”, dictArray);
/* ( { icon = “lufy.png”; name = Jack; }, { icon = “nami.png”; name = Rose; } ) */
Core Data

NSDictionary *dict = @{
@”name” : @”Jack”,
@”icon” : @”lufy.png”,
@”age” : @20,
@”height” : @1.55,
@”money” : @”100.9”,
@”sex” : @(SexFemale),
@”gay” : @”true”
};

// This demo just provide simple steps
NSManagedObjectContext *context = nil;
User *user = [User mj_objectWithKeyValues:dict context:context];

[context save:nil];
Coding

import”MJExtension.h”@implementationBag// NSCoding Implementation

MJExtensionCodingImplementation
@end/*************************************/// what properties not to be coded
[Bag mj_setupIgnoredCodingPropertyNames:^NSArray *{
return @[@”name”];
}];
// Equals: Bag.m implements +mj_ignoredCodingPropertyNames method.// Create model
Bag *bag = [[Bag alloc] init];
bag.name = @”Red bag”;
bag.price = 200.8;

NSString *file = [NSHomeDirectory() stringByAppendingPathComponent:@”Desktop/bag.data”];
// Encoding
[NSKeyedArchiverarchiveRootObject:bag toFile:file];

// Decoding
Bag *decodedBag = [NSKeyedUnarchiverunarchiveObjectWithFile:file];
NSLog(@”name=%@, price=%f”, decodedBag.name, decodedBag.price);
// name=(null), price=200.800000
Camel -> underline【统一转换属性名(比如驼峰转下划线)】

// Dog

import”MJExtension.h”@implementationDog

  • (NSString )mj_replacedKeyFromPropertyName121:(NSString )propertyName
    {
    // nickName -> nick_namereturn [propertyName mj_underlineFromCamel];
    }
    @end// NSDictionaryNSDictionary *dict = @{
    @”nick_name” : @”旺财”,
    @”sale_price” : @”10.5”,
    @”run_speed” : @”100.9”
    };
    // NSDictionary -> Dog
    Dog *dog = [Dog mj_objectWithKeyValues:dict];

// printingNSLog(@”nickName=%@, scalePrice=%f runSpeed=%f”, dog.nickName, dog.salePrice, dog.runSpeed);
NSString -> NSDate, nil -> @”“【过滤字典的值(比如字符串日期处理为NSDate、字符串nil处理为@”“)】

// Book

import”MJExtension.h”@implementationBook

  • (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
    {
    if ([property.name isEqualToString:@”publisher”]) {
    if (oldValue == nil) return@”“;
    } elseif (property.type.typeClass == [NSDateclass]) {
    NSDateFormatter *fmt = [[NSDateFormatteralloc] init];
    fmt.dateFormat = @”yyyy-MM-dd”;
    return [fmt dateFromString:oldValue];
    }

    return oldValue;
    }
    @end// NSDictionaryNSDictionary *dict = @{
    @”name” : @”5分钟突破iOS开发”,
    @”publishedTime” : @”2011-09-10”
    };
    // NSDictionary -> Book
    Book *book = [Book mj_objectWithKeyValues:dict];

// printingNSLog(@”name=%@, publisher=%@, publishedTime=%@”, book.name, book.publisher, book.publishedTime);
More use cases【更多用法】

Please reference to NSObject+MJKeyValue.h and NSObject+MJCoding.h

四、总结

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值