iOS学习iOS DeveloperiOS学习笔记

关于iOS数据解析

2017-01-22  本文已影响482人  MiracleGl

在现在这个网络发达的时代里,要获取各种信息。我们会从网络获取XML或者JSON格式的数据,我们开发人员就要对它进行解析,得到我们想要的数据。


Plist

}

``` 
/*
 参数
 1. data:   要反序列化的二进制数据
 2. option: 选项,位移枚举类型
     NSPropertyListImmutable = 0,                   不可变
     NSPropertyListMutableContainers = 1,           容器可变
     NSPropertyListMutableContainersAndLeaves = 2   容器和叶子可变
 3. format: 如果不希望知道格式,传入 NULL 即可
 4. error:  错误
 */

id result = [NSPropertyListSerialization propertyListWithData:data options:0 format:NULL error:NULL];

JSON数据

{
    "name":"赏金猎人",
    "age":"18"
}

// 描述一个另学生
{

    "name":"莫甘娜",
    "age":19
}

[
    {
        "name":"金克斯",
        "age":"18"
    },
    {
         "name":"武器大师",
         "age":"19"
    },
    {
         "name":"邪恶小法师",
         "age":"20"
    }
]

// 1.URL
    NSURL *URL = [NSURL URLWithString:@"http://localhost/demo.json"];

    // 2.session
    NSURLSession *session = [NSURLSession sharedSession];

    // 3.发起任务(dataTask)
    NSURLSessionDataTask *dataTask = [session dataTaskWithURL:URL completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

        // 5.错误处理
        if (error == nil && data != nil) {

            // 提示 : 服务器返回给客户端的都是二进制数据,客户端无法直接使用;
            // 反序列化 / 数据解析 : 把服务器返回给客户端的二进制数据转换成客户端可以直接使用的OC对象;

            // 6.json反序列化
            id result = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
            NSLog(@"%@ -- %@",[result class],result);

        } else {
            NSLog(@"%@",error);
        }
    }];

    // 4.启动任务
    [dataTask resume];

XML数据

      <Class>
<student>
    <name>卡特琳娜</name>
    <age>21</age>
</student>
<student>
    <name>牛头</name>
    <age>22</age>
</student>
<student name="卡尔萨斯" age="23">
</studet>
<student name="瑞兹" age="24" />
    </Class>

Demo实际应用

// URL
    NSURL *URL = [NSURL URLWithString:@"http://news.coolban.com/Api/Index/news_list/app/2/cat/0/limit/20/time/1457168894/type/0?channel=appstore&uuid=19C2BF6A-94F8-4503-8394-2DCD07C36A8F&net=5&model=iPhone&ver=1.0.5"];

    // 发起任务获取json数据
    [[[NSURLSession sharedSession] dataTaskWithURL:URL completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

        // 错误处理
        if (error == nil && data != nil) {

            // 反序列化
            id result = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
            NSLog(@"%@ -- %@",[result class],result);

        } else {
            NSLog(@"%@",error);
        }

    }] resume];

新建模型类-GLNews.h文件声明

@interface GLNews : NSObject

/// 新闻ID
@property (nonatomic,copy) NSString *id;
/// 新闻主标题
@property (nonatomic,copy) NSString *title;
/// 新闻副标题
@property (nonatomic,copy) NSString *summary;
/// 新闻图标
@property (nonatomic,copy) NSString *img;
/// 新闻来源
@property (nonatomic,copy) NSString *sitename;
/// 发布时间
@property (nonatomic,copy) NSString *addtime;

/**
 *  提供给外界快速实现字典转模型的方法
 *
 *  @param dict 外界传入的字典
 *
 *  @return 返回模型对象
 */
+ (instancetype)newsWithDict:(NSDictionary *)dict;

@end

新建模型类-GLNews.m文件实现

@implementation GLNews

+ (instancetype)newsWithDict:(NSDictionary *)dict {
    GLNews *news = [[GLNews alloc] init];

    // KVC字典转模型
    [news setValuesForKeysWithDictionary:dict];

    return news;
}

- (void)setValue:(id)value forUndefinedKey:(NSString *)key {

}

- (NSString *)description {
    return [NSString stringWithFormat:@"%@ - %@ - %@ - %@ - %@ - %@",self.id,self.title,self.summary,self.img,self.sitename,self.addtime];
}

@end

控制器中获取数据并实现转模型

// URL
    NSURL *URL = [NSURL URLWithString:@"http://news.coolban.com/Api/Index/news_list/app/2/cat/0/limit/20/time/1457168894/type/0?channel=appstore&uuid=19C2BF6A-94F8-4503-8394-2DCD07C36A8F&net=5&model=iPhone&ver=1.0.5"];

    // 发起任务获取json数据
    [[[NSURLSession sharedSession] dataTaskWithURL:URL completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

        // 错误处理
        if (error == nil && data != nil) {

            // 反序列化
            NSArray *result = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];

            // 定义临时可变数组
            NSMutableArray *tmpM = [NSMutableArray arrayWithCapacity:result.count];

            // 实现字典转模型
            [result enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

                // 字典转模型
                GLNews *news = [GLNews newsWithDict:obj];
                [tmpM addObject:news];
            }];

            NSLog(@"%@",tmpM);

        } else {
            NSLog(@"%@",error);
        }

    }] resume];

数据源数组赋值


// URL
    NSURL *URL = [NSURL URLWithString:@"http://news.coolban.com/Api/Index/news_list/app/2/cat/0/limit/20/time/1457168894/type/0?channel=appstore&uuid=19C2BF6A-94F8-4503-8394-2DCD07C36A8F&net=5&model=iPhone&ver=1.0.5"];

    // 发起任务获取json数据
    [[[NSURLSession sharedSession] dataTaskWithURL:URL completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

        // 错误处理
        if (error == nil && data != nil) {

            // 反序列化
            NSArray *result = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];

            // 定义临时可变数组
            NSMutableArray *tmpM = [NSMutableArray arrayWithCapacity:result.count];

            // 实现字典转模型
            [result enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

                // 字典转模型
                GLNews *news = [GLNews newsWithDict:obj];
                [tmpM addObject:news];
            }];

            // 给数据源数组赋值
            _newsList = tmpM.copy;
            // 刷新列表
            [self.tableView reloadData];

        } else {
            NSLog(@"%@",error);
        }

    }] resume];
}

实现数据源方法

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return _newsList.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"NewsCell" forIndexPath:indexPath];

    GLNews *news = _newsList[indexPath.row];

    cell.textLabel.text = news.title;
    cell.detailTextLabel.text = news.sitename;

    return cell;
}

效果图

抓包工具

相关参考


感谢读到最后的朋友,当然读到这里肯定是不够的你还要继续的学习,才能走的更远。最后祝大家新年快乐,动动手指点一下赞,方便下次再看,再次感谢!

上一篇下一篇

猜你喜欢

热点阅读