//
// MJViewController.m
// 08-汽车品牌
//
// Created by apple on 14-3-30.
// Copyright (c) 2014年 itcast. All rights reserved.
//
#import "MJViewController.h"
#import "MJCarGroup.h"
#import "MJCar.h"
@interface MJViewController ()<UITableViewDataSource>
/**
* 车品牌组数据
*/
@property (nonatomic, strong) NSArray *groups;
@end
@implementation MJViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (NSArray *)groups
{
if (_groups == nil) {
// 初始化
// 1.获得plist的全路径
NSString *path = [[NSBundle mainBundle] pathForResource:@"cars_total.plist" ofType:nil];
// 2.加载数组
NSArray *dictArray = [NSArray arrayWithContentsOfFile:path];
// 3.将dictArray里面的所有字典转成模型对象,放到新的数组中
NSMutableArray *groupArray = [NSMutableArray array];
for (NSDictionary *dict in dictArray) {
// 3.1.创建模型对象
MJCarGroup *group = [MJCarGroup groupWithDict:dict];
// 3.2.添加模型对象到数组中
[groupArray addObject:group];
}
// 4.赋值
_groups = groupArray;
}
return _groups;
}
#pragma mark - 数据源方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return self.groups.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
MJCarGroup *group = self.groups[section];
return group.cars.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.定义一个循环标识
static NSString *ID = @"car";
// 2.从缓存池中取出可循环利用cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// 3.缓存池中没有可循环利用的cell
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
}
// 4.设置数据
MJCarGroup *group = self.groups[indexPath.section];
MJCar *car = group.cars[indexPath.row];
cell.imageView.image = [UIImage imageNamed:car.icon];
cell.textLabel.text = car.name;
return cell;
}
/**
* 第section组显示的头部标题
*/
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
MJCarGroup *group = self.groups[section];
return group.title;
}
/**
* 返回右边索引条显示的字符串数据
*/
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return [self.groups valueForKeyPath:@"title"];
}
- (BOOL)prefersStatusBarHidden
{
return YES;
}
@end
tableView
原创
©著作权归作者所有:来自51CTO博客作者照亮你的路灯的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:ios之启动图片适配
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
ios 多列tableview tableview 多选
正如现在许多app上许多多选功能,多选删除,多选添加等等。我以tableView为载体,表现一下这些功能做法的思路。知识在于活学活用,希望你能有所感悟。从原理去理解。 一,先看一个简单的功能需求。 像上面这么种需求,只需要利用tableView自带的编辑模式就可以实现了,废话不多说,直接上代码。注意: 1,tableView
ios 多列tableview UITableView 多选 tableView的应用 Mac -
nginx负载均衡 upstream模块没有安装
&n
nginx负载均衡 服务器 nginx Nginx