• JSON序列化为实体对象


    1、JSON 文本,文件名 applications.json

     [
      {
      "display_name": "500px",
      "developer_name": "500px",
      "identifier": "471965292"
      },
      {
      "display_name": "Airbnb",
      "developer_name": "Airbnb, Inc.",
      "identifier": "401626263"
      },
      {
      "display_name": "AppStore",
      "developer_name": "Apple, Inc.",
      "identifier": ""
      },
      {
      "display_name": "Camera",
      "developer_name": "Apple, Inc.",
      "identifier": ""
      },
      {
      "display_name": "Dropbox",
      "developer_name": "Dropbox, Inc.",
      "identifier": "327630330"
      },
      {
      "display_name": "Facebook",
      "developer_name": "Facebook, Inc.",
      "identifier": "284882215"
      },
      {
      "display_name": "WWDC",
      "developer_name": "Apple, Inc.",
      "identifier": "640199958"
      },
    ]

    2、新建 Entity 对象类

    #import <Foundation/Foundation.h>
    
    //JSON 文件中去掉了一些类型 typedef NS_ENUM(NSUInteger, ApplicationType) { ApplicationType500px, ApplicationTypeAirbnb, ApplicationTypeAppstore, ApplicationTypeCamera, ApplicationTypeDropbox, ApplicationTypeFacebook, ApplicationTypeFancy, ApplicationTypeFoursquare, ApplicationTypeiCloud, ApplicationTypeInstagram, ApplicationTypeiTunesConnect, ApplicationTypeKickstarter, ApplicationTypePath, ApplicationTypePinterest, ApplicationTypePhotos, ApplicationTypePodcasts, ApplicationTypeRemote, ApplicationTypeSafari, ApplicationTypeSkype, ApplicationTypeSlack, ApplicationTypeTumblr, ApplicationTypeTwitter, ApplicationTypeVideos, ApplicationTypeVesper, ApplicationTypeVine, ApplicationTypeWhatsapp, ApplicationTypeWWDC };
    @interface Application : NSObject @property (nonatomic, strong) NSString *displayName; @property (nonatomic, strong) NSString *developerName; @property (nonatomic, strong) NSString *identifier; @property (nonatomic, strong) NSString *iconName; @property (nonatomic) ApplicationType type; - (instancetype)initWithDictionary:(NSDictionary *)dict; @end
    #import "Application.h"
    
    @implementation Application
    
    - (instancetype)initWithDictionary:(NSDictionary *)dict
    {
        if (!dict) {
            return nil;
        }
        
        self = [super init];
        if (self) {
            self.displayName = [dict objectForKey:@"display_name"];
            self.developerName = [dict objectForKey:@"developer_name"];
            self.identifier = [dict objectForKey:@"identifier"];
        }
        return self;
    }
    
    - (void)setDisplayName:(NSString *)displayName
    {
        _displayName = displayName;
        
        self.iconName = [[[NSString stringWithFormat:@"icon_%@", self.displayName] lowercaseString] stringByReplacingOccurrencesOfString:@" " withString:@"_"];
        
        self.type = applicationTypeFromString(self.displayName);
    }
    
    ApplicationType applicationTypeFromString(NSString *string)
    {
    //JSON 文件中去掉了一些类型 NSArray
    *arr = @[ @"500px", @"Airbnb", @"AppStore", @"Camera", @"Dropbox", @"Facebook", @"Fancy", @"Foursquare", @"iCloud", @"Instagram", @"iTunes Connect", @"Kickstarter", @"Path", @"Pinterest", @"Photos", @"Podcasts", @"Remote", @"Safari", @"Skype", @"Slack", @"Tumblr", @"Twitter", @"Videos", @"Vesper", @"Vine", @"WhatsApp", @"WWDC" ]; return (ApplicationType)[arr indexOfObject:string]; } @end

    3、读取并序列化 JSON ,把读取的信息,封装到 Entity 对象中

    #pragma mark - Serialization
    //序列化数据
    - (void)serializeApplications
    {
        NSString *path = [[NSBundle mainBundle] pathForResource:@"applications" ofType:@"json"];
        NSData *data = [NSData dataWithContentsOfFile:path];
        NSArray *objects = [[NSJSONSerialization JSONObjectWithData:data options:kNilOptions|NSJSONWritingPrettyPrinted error:nil] mutableCopy];
        
        self.applications = [NSMutableArray new];
        
        for (NSDictionary *dictionary in objects) {
            Application *app = [[Application alloc] initWithDictionary:dictionary];
            [self.applications addObject:app];
        }
    }

    4、调用序列化方法

    @interface MainViewController () 
    
    //保存 JSON 数据的 数组
    @property (nonatomic, strong) NSMutableArray *applications;
    
    @end
    
    @implementation MainViewController
    
    - (void)awakeFromNib
    {
        [super awakeFromNib];
        
        //序列化数据
        [self serializeApplications];
    }
  • 相关阅读:
    maven工程的目录结构
    集合的区别
    名词解析
    1.(字符串)-判断字符串是否是子集字符串
    1.(字符串)-判断两字符串是否相等
    python max函数技巧
    1.(字符串)-子字符串位置查找
    numpy线性代数np.linalg
    Python图像库PIL 使用
    pyhthon-chr
  • 原文地址:https://www.cnblogs.com/allanliu/p/4606857.html
Copyright © 2020-2023  润新知