UI020---UITableView实例汽车品牌

一、plist文件和项目结构图
这里写图片描述

说明:这是一个嵌套模型的示例

二、代码示例:

//CBCarsgroup.h文件代码:


 1 //
 2 // CBCarsgroup.h
 3 //  汽车展示
 4 //
 5 //  
 6 //  
 7 //
 8 
 9 #import <Foundation/Foundation.h>
10 
11 @interface CBCarsgroup : NSObject
12 @property(nonatomic,copy)NSString *title;
13 @property(nonatomic,strong)NSArray *cars;
14 
15 -(instancetype)initWithDict:(NSDictionary *)dict;
16 +(instancetype)carsgroupWithDict:(NSDictionary *)dict;
17 @end

CBCarsgroup.m文件代码:

1 //
 2 //  CBCarsgroup.m
 3 //  汽车展示
 4 //
 5 //  
 6 //  
 7 //
 8 
 9 #import "CBCarsgroup.h"
10 #import "CBCars.h"
11 
12 @implementation CBCarsgroup
13 -(instancetype)initWithDict:(NSDictionary *)dict
14 {
15     if (self=[super init]) {
16         //嵌套的字典转模型
17         self.title=dict[@"title"];
18         
19         //注意
20         NSArray *dictcars=dict[@"cars"];
21         //像下面这样写可以提高性能
22         NSMutableArray *arrayM=[NSMutableArray arrayWithCapacity:dictcars.count];
23         for (NSDictionary *dict  in dictcars) {
24             YYcars *yycars=[[YYcars alloc]initWithDict:dict];
25             [arrayM addObject:yycars];
26         }
27          // 赋值存储模型的数组给属性
28         self.cars=arrayM;
29     }
30     return self;
31 }
32 
33 +(instancetype)carsgroupWithDict:(NSDictionary *)dict
34 {
35     return [[self alloc]initWithDict:dict];
36 }
37 @end

CBCars.h文件

 1 //
 2 //  CBCars.h
 3 //  汽车展示
 4 //
 5 //  
 6 // 
 7 //
 8 
 9 #import <Foundation/Foundation.h>
10 
11 @interface CBCars : NSObject
12 @property(nonatomic,copy)NSString *name;
13 @property(nonatomic,copy)NSString *icon;
14 
15 -(instancetype)initWithDict:(NSDictionary *)dict;
16 +(instancetype)carsWithDict:(NSDictionary *)dict;
17 @end

CBCars.m文件

 1 //
 2 // CBCars.m
 3 //  汽车展示
 4 //
 5 //  
 6 //  
 7 //
 8 
 9 #import "CBCars.h"
10 
11 @implementation CBCars
12 
13 -(instancetype)initWithDict:(NSDictionary *)dict
14 {
15     if (self=[super init]) {
16         self.name=dict[@"name"];
17         self.icon=dict[@"icon"];
18     }
19     return self;
20 }
21 +(instancetype)carsWithDict:(NSDictionary *)dict
22 {
23     return [[self alloc]initWithDict:dict];
24 }
25 @end

CBViewController.m文件

 1 //
  2 //  CBViewController.m
  3 //  汽车展示
  4 //
  5 //  
  6 //  
  7 //
  8 
  9 #import "CBViewController.h"
 10 #import "CBCarsgroup.h"
 11 #import "CBCars.h"
 12 
 13 @interface CBViewController ()<UITableViewDataSource>
 14 @property (strong, nonatomic) IBOutlet UITableView *tableview;
 15 @property(nonatomic,strong) NSArray *car;
 16 @end
 17 
 18 @implementation CBViewController
 19 
 20 - (void)viewDidLoad
 21 {
 22     [super viewDidLoad];
 23     
 24     self.tableview.rowHeight=60.f;
 25     self.tableview.dataSource=self;
 26     NSLog(@"%d",self.car.count);
 27 }
 28 #pragma mark- 实现懒加载
 29 //1.从包中读取数据
 30 //2.字典转模型
 31 //3.返回cars
 32 -(NSArray *)car
 33 {
 34     if (_car==nil) {
 35       
 36         NSString *fullpath= [[NSBundle mainBundle]pathForResource:@"cars_total.plist" ofType:nil];
 37         NSArray  *arrayM=[NSArray arrayWithContentsOfFile:fullpath];
 38         
 39         NSMutableArray *carsarray=[NSMutableArray array];
 40         for (NSDictionary  *dict in arrayM) {
 41             YYcarsgroup *carsgroup=[YYcarsgroup carsgroupWithDict:dict];
 42             [carsarray addObject:carsgroup];
 43         }
 44         _car=[carsarray copy];
 45     }
 46     return _car;
 47 }
 48 
 49 
 50 #pragma mark-  实现tableview的数据展示
 51 //1.设置数据源,遵守协议
 52 //2.返回组
 53 //3.返回行
 54 //4.每组每行对应的数据
 55 //4.1去缓存中去取cell
 56 //4.2若没有,则创建cell,并盖章
 57 //4.3设置cell的数据
 58 //4.4返回cell
 59 
 60 -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 61 {
 62     return self.car.count;
 63 }
 64 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 65 {
 66     YYcarsgroup *carsgroup=self.car[section];
 67     return carsgroup.cars.count;
 68 }
 69 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 70 {
 71     static NSString *identifier=@"car";
 72     //4.1去缓存中去取cell
 73     UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
 74     //4.2若没有,则创建cell,并盖章
 75     if (cell==nil) {
 76         cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
 77     }
 78     //4.3设置cell的数据
 79     //设置对应的组
 80     YYcarsgroup *carsgroup=self.car[indexPath.section];
 81     //设置对应的行
 82     YYcars *yycars=carsgroup.cars[indexPath.row];
 83 
 84     cell.imageView.image=[UIImage imageNamed:yycars.icon];
 85     cell.textLabel.text=yycars.name;
 86     //4.4返回cell
 87     return cell;
 88 }
 89 
 90 //设置每组的标题
 91 -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
 92 {
 93     YYcarsgroup *carsgroup=self.car[section];
 94     return carsgroup.title;
 95 }
 96 
 97 //设置索引
 98 -(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
 99 {
100     //利用kvc取出所有的标题
101     NSArray *title=[self.car  valueForKeyPath:@"title"];
102     return title;
103 }
104 
105 //隐藏状态栏
106 -(BOOL)prefersStatusBarHidden
107 {
108     return  YES;
109 }
110 @end

实现效果:
这里写图片描述

三、注意点

1.设置索引

代码如下:

//设置索引

-(NSArray )sectionIndexTitlesForTableView:(UITableView )tableView {
//利用kvc取出所有的标题
NSArray *title=[self.car valueForKeyPath:@”title”];
return title; }

2.cell的性能优化

代码如下:

 static NSString *identifier=@"car";
    //4.1去缓存中去取cell
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
    //4.2若没有,则创建cell,并盖章
    if (cell==nil) {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值