iphone开发之表格组件UITableView的使用(三)通过加载plist文件字典转模型方式展示分组数据

本文主要是介绍iphone开发之表格组件UITableView的使用(三)通过加载plist文件字典转模型方式展示分组数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、通过加载plist文件,利用在懒加载中把字典转模型实现的步骤如下:
(1)新建plist文件,编辑plist文件内容添加属性。编辑步骤如下:
在文件中新建一个NSArray用来包含所有的数据,点击大的NSArray数据的三角符号向下,新建元素字典作为NSArray的每一项内容,为第一个数组元素即字典添加属性(包括组标题,组尾描述,小的NSArray:用来描述当前组的每一行内容)。然后选中第一个字典(数组的第一项)复制粘贴…为整体的NSArray数组添加项目。
(2)新建model对象。除了添加和字典对应的属性外还要添加两个返回值类型为instancetype的初始化类方法和对象方法。
(3)编辑model对象的初始化方法
注意:在初始化方法中可以把参数字典对象的每一个属性逐个赋值给model对象的对应属性,但是当对象的属性很多即字典的键值对很多时就会变得非常麻烦。
解决方法:在初始化方法中利用对象的如下方法:
[self  setValueForKeysWithDictionary:dict]; 就会把字典中每一个键对应的值一一赋值给model对象中和字典键名相同的属性变量。
具体代码示例如下:
-(instancetype)initWithDict: (NSDictionary *)dict
{
      if(self = [super init])
   {
         //self.title = dict[@“title”];
        // self.desc = dict[@“desc”];
        // self.cars =dict[@“cars”];
      [self  setValuesForKeyWithDictionary:  dict]; // KVC 中的方法
   }
return  self;
}
-(instancetype)groupWithDict: (NSDictionary *)dict
{
    return [[self alloc] initWithDict: dict];
}
(4)在控制器的.h文件中添加一个数组属性  
@property(nonatomic,strong)NSArray  *groups;
(5)重写数组属性的get方法,并在方法内实现懒加载。具体步骤如下:
1>找到plist文件的路径,(用[[NSBundle mainBundle] pathForResource:…] 方法实现)。
2>加载plist文件。利用数组的arrayWithContentOfFile方法。
3>把字典转成模型。新建一个空的可变数组。用来存放model对象。
4>  遍历字典数组中的每一个字典,把字典转换成模型,把模型放到存放model对象的数组中。
5>把存放model的可变数组赋值给数组属性变量。
6>返回下划线数组变量属性。  
(切记:不可在重写get方法中返回self.数组属性,否则自己调用自己造成死循环)。 具体代码如下:
-(NSArray *)groups
{
if(_group == nil){
   // 懒加载数据
          //找到plist文件的路径
       NSString *path = [[NSBundle mainBundle] pathFOrResource:@“XXX.plist”ofType:nil];
  // 加载plist文件
     NSArray *arrayDict = [NSArray arrayWithContentsOfFile:path];
           //把字典转为模型
      NSMutableArray  *arrayModel = [NSMutableArray  array];
         // 遍历字典数组中的每一个字典,把每个字典转成模型,并把模型放到arrayModel数组中
      for(NSDictionary * dict  in  arrayDict)
         {
              // 创建模型对象
              CZGroup  *model = [CZGroup  groupWithDict: dict];
              [arrayModel  addObject: model];
          }
        _groups = arrayModel;
   }
    return _groups;
}
(6)拖拽或新建一个UITableView属性变量,并在viewDidLoad方法中对其属性进行设置。让当前控制器遵守UITableViewDataSource协议,即让当前控制器作为UITableView组件的数据源对象。
(7)设置UITableView组件的dataSource属性为当前控制器,即
self.tableView.dataSource = self; 或者拖线实现。
(8)添加并实现数据源协议中的几个方法。如下所示:
-(NSTnteger)numberOfSectionsInTableView:(UITableView *) tableView
{  // 此方法用于告诉UITableView组件分为几个组
    return self.groups.count; // 数组元素的个数即是组数
 }
-(NSInteger) tableVIew: (UITableVIew *)tableView numberOfRowsInSection:(NSInteger) section; 
{  // 此方法用于用于返回每一组的行数
    // 根据组索引(section)获取组对象
   CGGroup  *group = self.groups[section];
   return  group.cars.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView  cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ // 此方法用于返回每一组每一行的内容(单元格UITableViewCell) 具体步骤如下:
    //  1、获取模型数据
        //获取组模型
         CZGroup  *group = self.groups[indexPath.section];
         //获取对应的汽车品牌
        NSString  *brand = group.cars[indexPath.row];
    //   2、创建单元格UITableViewCell
     UITableViewCell *cell = [[UITableViewCell  alloc] initWithStyle:UITableViewCellStyleDefault  reuseIndentifier:nil];
    //   3、把模型中的数据设置给单元格中的子控件
          //把汽车品牌设置给单元格中的Label
          cell.textLabel.text = brand;
    //   4、返回单元格UITableViewCell
         return cell;
}
-(NSString *)tableView:(UITableView *)tableView  titleForHeaderInSection:(NSInteger) section;
{  // 此方法用于给每一组添加组标题
     CZGroup *group = self.groups[section];
    return  group.title;
}
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
{  // 返回组尾描述
   CZGroup *group = self.groups[section];
    return  group.desc;
}
(9)非常重要的一条:在创建UITableView时千万不能忘记设置风格。因为默认下是plain不分组的。要进行属性设置为group。如下所示:

self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT) style:UITableViewStyleGrouped];

代码验证示例如下:

新建一个具有simple View的工程

首先在Supporting files文件夹下新建一个plist文件,编辑内容如下:


用记事本打开,其实是一个xml文件,如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array><dict><key>cars</key><array><string>奥迪</string><string>宝马</string><string>奔驰</string><string>保时捷</string><string>大众</string></array><key>title</key><string>德系品牌</string><key>desc</key><string>高端大方上档次,世界一流品牌</string></dict><dict><key>cars</key><array><string>本田</string><string>丰田</string><string>铃木</string><string>雷克萨斯</string><string>马自达</string><string>日产</string><string>三菱</string><string>现代</string></array><key>title</key><string>日韩品牌</string><key>desc</key><string>牛逼哄哄,哎哟,好像不错</string></dict><dict><key>cars</key><array><string>别克</string><string>福特</string><string>Jeep</string><string>凯迪拉克</string><string>林肯</string><string>雪佛兰</string></array><key>title</key><string>美系品牌</string><key>desc</key><string>老牌汽车,复古风</string></dict><dict><key>cars</key><array><string>标致</string><string>雪铁龙</string><string>宾利</string><string>捷豹</string><string>路虎</string><string>劳斯莱斯</string><string>法拉利</string><string>兰博基尼</string><string>玛莎拉蒂</string></array><key>title</key><string>欧系其他</string><key>desc</key><string>优雅高贵,你值得拥有</string></dict><dict><key>cars</key><array><string>比亚迪</string><string>奔腾</string><string>北京汽车</string><string>长城</string><string>东南</string><string>东风</string></array><key>title</key><string>自主品牌</string><key>desc</key><string>Made In China,质量你懂的</string></dict>
</array>
</plist>

   在Supporting下根据plist文件内的字典属性新建model类型的类 Group

编辑Group.h如下:

//
//  group.h
//  通过加载plist文件来展示分组数据
//
//  Created by apple on 15/8/31.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import <Foundation/Foundation.h>@interface Group : NSObject
@property (nonatomic, strong)  NSArray  *cars;
@property (nonatomic, strong)  NSString *title;
@property (nonatomic, strong)  NSString *desc;-(instancetype) initWithDict:(NSDictionary *)dict;
+(instancetype) groupWithDict:(NSDictionary *)dict;
@end
编辑Group.m如下:

//
//  group.m
//  通过加载plist文件来展示分组数据
//
//  Created by apple on 15/8/31.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "group.h"@implementation Group
-(instancetype) initWithDict:(NSDictionary *)dict
{if (self = [super init]){// 第一种方式
//        self.desc = dict[@"desc"];
//        self.title  = dict[@"title"];
//        self.cars = dict[@"cars"];// 第二种方式KVC[self setValuesForKeysWithDictionary:dict];}return self;
}
+(instancetype) groupWithDict:(NSDictionary *)dict
{return [[self alloc] initWithDict:dict];
}
@end
编辑控制器类的.h文件如下:

//
//  ViewController.h
//  通过加载plist文件来展示分组数据
//
//  Created by apple on 15/8/31.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import <UIKit/UIKit.h>@interface ViewController : UIViewController  <UITableViewDataSource>
@property (nonatomic,  strong) NSArray *groups;
@property (nonatomic,  strong) UITableView *tableView;
@end
编辑控制器类的.m文件如下:

//
//  ViewController.m
//  通过加载plist文件来展示分组数据
//
//  Created by apple on 15/8/31.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "ViewController.h"
#import "group.h"
#define  WIDTH     [UIScreen mainScreen].bounds.size.width
#define  HEIGHT   [UIScreen mainScreen].bounds.size.height@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad
{[super viewDidLoad];// 新建一个UITableView组件self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT) style:UITableViewStyleGrouped];  //分配空间的同时设置分组风格self.tableView.dataSource = self; // 设置当前控制器为数据源对象[self.view addSubview:self.tableView];NSLog(@"%@",self.groups);
}// 重写数组groups的get方法实现懒加载,将字典转为模型
-(NSArray *)groups
{if (_groups == nil) {// 在app在手机安装的根目录下寻找plist文件的路径NSString *path = [[NSBundle mainBundle] pathForResource:@"cars_simple.plist" ofType:nil];// 读取文件的内容到一个数组NSArray *arrayDict = [NSArray arrayWithContentsOfFile:path];// 新建一个可变数组。用来存放每一个字典对象装换后的model对象NSMutableArray *modelGroup = [NSMutableArray array]; // 空的可变数组// 遍历从文件读取出来的字典数组,把每一个字典转换成model存放到可变数组modelGroup中for (NSDictionary *  dict  in   arrayDict) {Group *group = [Group groupWithDict:dict];[modelGroup addObject:group];}_groups = modelGroup;}return _groups;
}- (void)didReceiveMemoryWarning
{[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}// 当前UITableView分为多少组
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{return self.groups.count;  // 数组的(字典——>模型)对象个数就是组数
}// 每一组分为多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{// 先获取组的对象Group *group = self.groups[section];return group.cars.count;
}// 每一组每一行显示什么内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{// 新建表格对象UITableViewCell * cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];// 获取组模型数据Group *group = self.groups[indexPath.section];// 用模型数据设置表格Cell属性cell.textLabel.text = group.cars[indexPath.row];return cell;
}// 添加组标题描述
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{// 获取model对象Group *group = self.groups[section];return group.title;
}// 添加组尾描述
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{// 获取model对象Group *group = self.groups[section];return group.desc;
}
@end
运行结果如下:








这篇关于iphone开发之表格组件UITableView的使用(三)通过加载plist文件字典转模型方式展示分组数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1115289

相关文章

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

大模型研发全揭秘:客服工单数据标注的完整攻略

在人工智能(AI)领域,数据标注是模型训练过程中至关重要的一步。无论你是新手还是有经验的从业者,掌握数据标注的技术细节和常见问题的解决方案都能为你的AI项目增添不少价值。在电信运营商的客服系统中,工单数据是客户问题和解决方案的重要记录。通过对这些工单数据进行有效标注,不仅能够帮助提升客服自动化系统的智能化水平,还能优化客户服务流程,提高客户满意度。本文将详细介绍如何在电信运营商客服工单的背景下进行

基于MySQL Binlog的Elasticsearch数据同步实践

一、为什么要做 随着马蜂窝的逐渐发展,我们的业务数据越来越多,单纯使用 MySQL 已经不能满足我们的数据查询需求,例如对于商品、订单等数据的多维度检索。 使用 Elasticsearch 存储业务数据可以很好的解决我们业务中的搜索需求。而数据进行异构存储后,随之而来的就是数据同步的问题。 二、现有方法及问题 对于数据同步,我们目前的解决方案是建立数据中间表。把需要检索的业务数据,统一放到一张M

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

关于数据埋点,你需要了解这些基本知识

产品汪每天都在和数据打交道,你知道数据来自哪里吗? 移动app端内的用户行为数据大多来自埋点,了解一些埋点知识,能和数据分析师、技术侃大山,参与到前期的数据采集,更重要是让最终的埋点数据能为我所用,否则可怜巴巴等上几个月是常有的事。   埋点类型 根据埋点方式,可以区分为: 手动埋点半自动埋点全自动埋点 秉承“任何事物都有两面性”的道理:自动程度高的,能解决通用统计,便于统一化管理,但个性化定

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

异构存储(冷热数据分离)

异构存储主要解决不同的数据,存储在不同类型的硬盘中,达到最佳性能的问题。 异构存储Shell操作 (1)查看当前有哪些存储策略可以用 [lytfly@hadoop102 hadoop-3.1.4]$ hdfs storagepolicies -listPolicies (2)为指定路径(数据存储目录)设置指定的存储策略 hdfs storagepolicies -setStoragePo

Hadoop集群数据均衡之磁盘间数据均衡

生产环境,由于硬盘空间不足,往往需要增加一块硬盘。刚加载的硬盘没有数据时,可以执行磁盘数据均衡命令。(Hadoop3.x新特性) plan后面带的节点的名字必须是已经存在的,并且是需要均衡的节点。 如果节点不存在,会报如下错误: 如果节点只有一个硬盘的话,不会创建均衡计划: (1)生成均衡计划 hdfs diskbalancer -plan hadoop102 (2)执行均衡计划 hd