博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MJExtension Examples【示例】
阅读量:5815 次
发布时间:2019-06-18

本文共 11915 字,大约阅读时间需要 39 分钟。

hot3.png

github地址:https://github.com/CoderMJLee/MJExtension

【示例】:

  • NSDictionary -> Model   【字典转模型】

 //    User *user = [User objectWithKeyValues:dict];typedef enum {    SexMale,    SexFemale} Sex;@interface User : NSObject@property (copy, nonatomic) NSString *name;@property (copy, nonatomic) NSString *icon;@property (assign, nonatomic) unsigned int 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 -> UserUser *user = [User 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 -> UserUser *user = [User 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【模型中嵌套模型】

@interface Status : 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 -> StatusStatus *status = [Status 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【模型中有个数组属性,数组里面又要装着其他模型】

/*实现思路:先根据给定的NSDictionary的结构,从外向里构造每一层模型,以上面这个NSDictionary为例:1、先构造第一层模型:根据NSDictionary字典的三个键创建模型,statuses,ads,totalNumber确定了模型的属性名称后需要确定类型,然后依次查看每个键后的数据类型;statuses 后面跟的是 "[]",说明statuses是数组类型;ads 后面跟的是 "[]",说明statuses是数组类型;totalNumber 后面跟的是字符串,说明statuses是字符串类型;2、解析出第一层模型之后,可以按照相同的步骤解析里面的嵌套字典;*/@interface Ad : NSObject@property (copy, nonatomic) NSString *image;@property (copy, nonatomic) NSString *url;@end@interface StatusResult : 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 -> StatusResultStatusResult *result = [StatusResult 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不相同(或者需要多级映射)】

/*适用于字典中 键的名称和OC的关键字相同的情况,模型和字典映射,可以将模型的属性映射到字典任意的节点下,前题是字典节点的路径必须要正确;*/@interface Bag : NSObject@property (copy, nonatomic) NSString *name;@property (assign, nonatomic) double price;@end@interface Student : 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 map1、调用 setupReplacedKeyFromPropertyName 方法[Student  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 + replacedKeyFromPropertyName method.2、在模型的.m文件中重写 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 -> StudentStudent *stu = [Student 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 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 modelUser *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.keyValues;NSLog(@"%@", statusDict);/* { text = "Nice mood!"; user =     { icon = "lufy.png"; name = Jack; }; } */// More complex situationStudent *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.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 arrayUser *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 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 stepsNSManagedObjectContext *context = nil;User *user = [User objectWithKeyValues:dict context:context];[context save:nil];
  • Coding

#import "MJExtension.h"@implementation Bag// NSCoding ImplementationMJExtensionCodingImplementation@end/***********************************************/// what properties not to be coded[Bag setupIgnoredCodingPropertyNames:^NSArray *{    return @[@"name"];}];// Equals: Bag.m implements +ignoredCodingPropertyNames method.// Create modelBag *bag = [[Bag alloc] init];bag.name = @"Red bag";bag.price = 200.8;NSString *file = [NSHomeDirectory() stringByAppendingPathComponent:@"Desktop/bag.data"];// Encoding[NSKeyedArchiver archiveRootObject:bag toFile:file];// DecodingBag *decodedBag = [NSKeyedUnarchiver unarchiveObjectWithFile:file];NSLog(@"name=%@, price=%f", decodedBag.name, decodedBag.price);// name=(null), price=200.800000
  • Camel -> underline【统一转换属性名(比如驼峰转下划线)】

// Dog#import "MJExtension.h"@implementation Dog+ (NSString *)replacedKeyFromPropertyName121:(NSString *)propertyName{    // nickName -> nick_name    return [propertyName [underlineFromCamel];}@end// NSDictionaryNSDictionary *dict = @{                       @"nick_name" : @"旺财",                       @"sale_price" : @"10.5",                       @"run_speed" : @"100.9"                       };// NSDictionary -> DogDog *dog = [Dog objectWithKeyValues:dict];// printingNSLog(@"nickName=%@, scalePrice=%f runSpeed=%f", dog.nickName, dog.salePrice, dog.runSpeed);
  • NSString -> NSDate, nil -> @""【过滤字典的值(比如字符串日期处理为NSDate、字符串nil处理为@"")】

// Book#import "MJExtension.h"@implementation Book- (id)newValueFromOldValue:(id)oldValue property:(MJProperty *)property{    if ([property.name isEqualToString:@"publisher"]) {        if (oldValue == nil) return @"";    } else if (property.type.typeClass == [NSDate class]) {        NSDateFormatter *fmt = [[NSDateFormatter alloc] init];        fmt.dateFormat = @"yyyy-MM-dd";        return [fmt dateFromString:oldValue];    }    return oldValue;}@end// NSDictionaryNSDictionary *dict = @{                       @"name" : @"5分钟突破iOS开发",                       @"publishedTime" : @"2011-09-10"                       };// NSDictionary -> BookBook *book = [Book objectWithKeyValues:dict];// printingNSLog(@"name=%@, publisher=%@, publishedTime=%@", book.name, book.publisher, book.publishedTime);

转载于:https://my.oschina.net/mexiaobai1315/blog/741448

你可能感兴趣的文章
nginx 301跳转到带www域名方法rewrite(转)
查看>>
AIX 配置vncserver
查看>>
windows下Python 3.x图形图像处理库PIL的安装
查看>>
【IL】IL生成exe的方法
查看>>
network
查看>>
SettingsNotePad++
查看>>
centos7安装cacti-1.0
查看>>
3个概念,入门 Vue 组件开发
查看>>
没有JS的前端:体积更小、速度更快!
查看>>
数据指标/表现度量系统(Performance Measurement System)综述
查看>>
GitHub宣布推出Electron 1.0和Devtron,并将提供无限制的私有代码库
查看>>
Angular2, NativeScript 和 React Native比较[翻译]
查看>>
论模式在领域驱动设计中的重要性
查看>>
国内首例:飞步无人卡车携手中国邮政、德邦投入日常运营
查看>>
微软将停止对 IE 8、9和10的支持
查看>>
微服务架构会和分布式单体架构高度重合吗
查看>>
《The Age of Surge》作者访谈
查看>>
测试人员的GitHub
查看>>
Spring Web Services 3.0.4.RELEASE和2.4.3.RELEASE发布
查看>>
有关GitHub仓库分支的几个问题
查看>>