iphone开发之表格组件UITableView的使用(六)通过加载plist文件展示汽车品牌并添加索引查找

本文主要是介绍iphone开发之表格组件UITableView的使用(六)通过加载plist文件展示汽车品牌并添加索引查找,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、
*使用cars_total.plist
*模型嵌套模型
**注意:这里使用的是嵌套模型,所以不能直接使用KVC了。需要通过把字典转模型的代码封装到Group模型中。
二、
*实现右侧的索引栏
*通过实现数据源协议-(NSArray *)sectionIndexTitlesForTabView:(UITableView *)tableView
*点击右侧索引栏中的文字,会根据索引的顺序跳转到左侧对应的位置
*获取右侧group数组中每个对象的title值,并返回到一个NSArray中。[self.groups  valueForKeyPath:@“title”];
三、注意:
一个包含对象的数组array,调用valueForKeyPath方法后会把指定键的所有值放到一个新的数组中。 例如:
NSArray  *arr = [array valueForKeyPath:@“name”];
 ***因为array本身没有name属性,所以以上方法调用,会返回array这个数组中的每个元素对象的name属性的值,会把这些name放到一个新的NSArray中返回。******

代码验证示例如下:plist文件如下:


新建工程,

编辑Car.h如下:

//
//  CZCar.h
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import <Foundation/Foundation.h>@interface CZCar : NSObject
@property (nonatomic, strong) NSString * icon;
@property (nonatomic, strong) NSString *name;-(instancetype)initWithDict:(NSDictionary *) dict;
+(instancetype ) carWithDict: (NSDictionary *) dict;
@end
编辑CZCar.m如下:

//
//  CZCar.m
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "CZCar.h"@implementation CZCar
-(instancetype)initWithDict:(NSDictionary *) dict
{if (self = [super  init]) {
//        self.name = dict[@"name"];
//        self.icon = dict[@"icon"];// 因为dict字典对象的数据元素都是基本类型,可以直接用KVC[self setValuesForKeysWithDictionary:dict];}return self;
}
+(instancetype ) carWithDict: (NSDictionary *) dict
{return [[self alloc] initWithDict:dict];
}
@end
编辑CZGroup.h如下:

//
//  CZGroup.h
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import <Foundation/Foundation.h>
#import "CZCar.h"
@interface CZGroup : NSObject
@property (nonatomic, strong) NSArray * cars;
@property (nonatomic, strong) NSString *title;-(instancetype) initWithDict:(NSDictionary *)dict;
+(instancetype) groupWithDict:(NSDictionary *)dict;@end
编辑CZGroup.m如下:

//
//  CZGroup.m
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "CZGroup.h"@implementation CZGroup
-(instancetype) initWithDict:(NSDictionary *)dict
{if (self = [super init]) {
//        self.name = dict[@"title"];
//        self.cars = dict[@"cars"];  // 因为cars是个字典,要进行模型装换[self setValuesForKeysWithDictionary:dict];  // 相当于给普通数据赋值// 当有模型嵌套的时候需要手动把字典转为模型// 创建一个用来保存模型的数组NSMutableArray *arrayModels = [NSMutableArray array];// 手动做一下模型转换for(NSDictionary * item_dict  in  dict[@"cars"]) // cars也是一个字典数组{ // 注意:声明的迭代项目不能和后面的集合名相同CZCar *car = [CZCar carWithDict:item_dict];[arrayModels addObject:car];}self.cars = arrayModels;}return self;
}
+(instancetype) groupWithDict:(NSDictionary *)dict
{return [[self alloc ]initWithDict:dict];
}@end

编辑控制器的.h文件:

//
//  ViewController.h
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import <UIKit/UIKit.h>
#import "CZGroup.h"
@interface ViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
@property (nonatomic, strong) NSArray * groups;  // 保存所有的数据
@property (nonatomic, strong) UITableView *tableView; 
@end
编辑控制器的.m如下:

//
//  ViewController.m
//  通过plist文件展现汽车品牌
//
//  Created by apple on 15/9/1.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "ViewController.h"
#define  WIDTH      [UIScreen mainScreen].bounds.size.width
#define   HEIGHT  [UIScreen mainScreen].bounds.size.height@interface ViewController ()@end@implementation ViewController// 重写groups的get方法实现懒加载
-(NSArray *)groups
{if (_groups == nil) {// 在app安装的根目录下获取指定plist文件的路径NSString *path = [[NSBundle mainBundle] pathForResource:@"cars_total.plist" ofType:nil];// 读取文件内容到一个数组NSArray * arrayDicts = [NSArray arrayWithContentsOfFile:path];// 创建一个保存模型对象的可变数组NSMutableArray *arrayModels = [NSMutableArray array];// 遍历字典数组,将字典转为对象模型并存入存放模型对象的可变数组for(NSDictionary *dict  in arrayDicts){// 新建model对象CZGroup *group = [CZGroup  groupWithDict:dict];[arrayModels addObject:group];}_groups = arrayModels;}return _groups;
}- (void)viewDidLoad
{[super viewDidLoad];//为UItableView组建设置属性self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT) style:UITableViewStyleGrouped];self.tableView.dataSource = self;// 当每一行高度相同的情况下,可用以下属性设置self.tableView.rowHeight = 60;[self.view addSubview:self.tableView];}// 利用代理中的方法取消状态栏
-(BOOL) prefersStatusBarHidden
{return  YES;
}// 分为多少组
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{return self.groups.count;
}// 每一组多行
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{// 获取模型数据CZGroup * group = self.groups[section];return group.cars.count;
}// 每一组每一行是什么单元格内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{// 1 获取模型数据// 根据组的索引获取组的模型CZGroup *group = self.groups[indexPath.section];// 根据当前行的索引,获取对应组的对应行的车CZCar *car = group.cars[indexPath.row];// 2 创建单元格// 2.1 声明一个重用IDstatic NSString *ID = @"Car_Cell";// 2.2  根据重用ID去缓存池中获取对应的CellUITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:ID];// 2.3 如果没有获取到,那么就创建一个具有重用ID的单元格if (cell == nil) {cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];}// 设置单元格内容cell.imageView.image = [UIImage imageNamed:car.icon];cell.textLabel.text = car.name;return cell;
}// 添加数据源协议中的方法,实现添加表头
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{// 获取组模型CZGroup *group = self.groups[section];return  group.title;
}// 利用代理中的方法添加右侧索引标题栏
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
//    NSMutableArray *arrayIndex = [NSMutableArray array];
//    for(CZGroup *group in self.groups)
//    {
//        [arrayIndex addObject:group.title];
//    }
//    return arrayIndex;
//    return [self.groups valueForKeyPath:@"title"];
}
- (void)didReceiveMemoryWarning
{[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}@end

运行结果如下:







这篇关于iphone开发之表格组件UITableView的使用(六)通过加载plist文件展示汽车品牌并添加索引查找的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

JS常用组件收集

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

这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

中文分词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

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

性能分析之MySQL索引实战案例

文章目录 一、前言二、准备三、MySQL索引优化四、MySQL 索引知识回顾五、总结 一、前言 在上一讲性能工具之 JProfiler 简单登录案例分析实战中已经发现SQL没有建立索引问题,本文将一起从代码层去分析为什么没有建立索引? 开源ERP项目地址:https://gitee.com/jishenghua/JSH_ERP 二、准备 打开IDEA找到登录请求资源路径位置

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设