UITableViewCell
#import "ContactListTableViewController.h"
#import "Contact.h"
#import "ContactCell.h"
#import "GirlCell.h"
@interface ContactListTableViewController ()
@property (nonatomic,retain)NSMutableArray *allKeys;
@property (nonatomic,retain)NSMutableDictionary *groupDic;
@end
@implementation ContactListTableViewController
- (void)dealloc
{
self.allKeys = nil;
self.groupDic = nil;
[super dealloc];
}
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
//读取数据
[self reloadData];
//自定义navigationBar
self.navigationItem.title = @"联系人";
self.view.backgroundColor = [UIColor brownColor];
}
//读取数据
- (void)reloadData
{
//获取文件路径
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Contact.plist" ofType:nil];
//通过文件路径获取数据
self.groupDic = [NSMutableDictionary dictionaryWithContentsOfFile:filePath];
//获取所有的key
NSArray *keys = [_groupDic allKeys];
//转换为可变数组并排序
self.allKeys = [NSMutableArray arrayWithArray:keys];
[_allKeys sortUsingSelector:@selector(compare:)];
//封装对象
//遍历
for (NSString *key in _allKeys) {
NSMutableArray *group = [_groupDic valueForKey:key];
//创建对象数组
NSMutableArray *newGroup = [[NSMutableArray alloc] init];
//遍历数组
for (NSMutableDictionary *perDic in group) {
//创建对象
Contact *contact = [[Contact alloc] init];
//赋值
[contact setValuesForKeysWithDictionary:perDic];
//放入数组
[newGroup addObject:contact];
}
//替换数组
[_groupDic setValue:newGroup forKey:key];
}
}
//获取对应分组
- (NSMutableArray *)getGroupWithSection:(NSInteger)section
{
NSString *key = [_allKeys objectAtIndex:section];
NSMutableArray *group = [_groupDic valueForKey:key];
return group;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return _allKeys.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSMutableArray *group = [self getGroupWithSection:section];
// Return the number of rows in the section.
return group.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @"aa";
static NSString *girl = @"girl";
//获取对应分组
NSMutableArray *group = [self getGroupWithSection:indexPath.section];
//获取对应联系人
Contact *contact = [group objectAtIndex:indexPath.row];
if ([contact.sex isEqualToString:@"男"]) {
ContactCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (!cell) {
cell = [[ContactCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
}
cell.contact = contact;
return cell;
}
GirlCell *cell = [tableView dequeueReusableCellWithIdentifier:girl];
if (!cell) {
cell = [[GirlCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:girl];
}
cell.contact = contact;
// ContactCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
// if (!cell) {
// cell = [[ContactCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
// }
//
// //先获取对应分组
// NSMutableArray *group = [self getGroupWithSection:indexPath.section];
// //获取对应联系人
// Contact *contact = [group objectAtIndex:indexPath.row];
// cell.contact = contact;
//
//// //cell赋值
//// cell.textLabel.text = contact.name;
//// cell.detailTextLabel.text = contact.phoneNumber;
//// cell.imageView.image = [UIImage imageNamed:contact.photoName];
//
// // Configure the cell...
//
//// cell.nameView.text = contact.name;
//// cell.photoView.image = [UIImage imageNamed:contact.photoName];
//// cell.phoneView.text = contact.phoneNumber;
//// cell.descriptionView.text = contact.description;
return cell;
}
//分区title
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return [_allKeys objectAtIndex:section];
}
//侧边导航栏
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return _allKeys;
}
//row高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
//获取对应分组
NSMutableArray *group = [self getGroupWithSection:indexPath.section];
//获取对应的联系人
Contact *contact = [group objectAtIndex:indexPath.row];
//获取高度
CGFloat height = [GirlCell heightWithString:contact.description];
return 120 + height;
}
UITableViewCell的更多相关文章
- UITableViewCell定制
UITableViewCell定制 效果 特点 1.可以添加不同的TableViewCell,可以定制不同的cell样式; 2.可以动态改变cell的高度; 3.可以随意摆放你cell的位 ...
- 自定义UITableViewCell实现左滑动多菜单功能LeftSwipe
今天愚人节,小伙们,愚人节快乐! 实现一个小功能,滑动菜单,显示隐藏的功能菜单, 先上图: 这里尝试用了下使用三个方式来实现了这个功能: 1.使用自定义UI ...
- 【ios开发】UITableViewCell的重用
移动开发需要解决的一个问题就是资源稀缺的问题.多数情况下是内存问题. 虽然现在的手机都号称大内存,高配置.但是移动app所占用的资源也在跟着不断膨胀, 也是造成内存不足的主要原因. 在前面的例子中,还 ...
- UITableViewCell 的附件类型 accessoryType 选中、详情、箭头
UITableViewCell * cell = [[UITableViewCell alloc] init]; 设置cell的附件类型: // >1 打钩 选中// cell.acces ...
- 【转】自定义UITableViewCell(registerNib: 与 registerClass: 的区别)
自定义UITableViewCell大致有两类方法: 使用nib 1.xib中指定cell的Class为自定义cell类型(注意不是设置File's Owner的class) 2.调用 tableVi ...
- 动态计算UITableViewCell高度
动态计算UITableViewCell高度 UILabel in UITableViewCell Auto Layout - UILabel的属性Lines设为了0表示显示多行.Auto Layout ...
- 【Swift】UITableViewCell 中 TTTAttributedLabel 超链接无法点击的问题
前言 还以为是自己代码写的有问题,用法和别的地方都一样,但是这个是在 UITableViewCell 中使用,另外在 tableHeaderView 中使用也没用这个问题 —— 使用 TTTAttri ...
- 【swift学习笔记】三.使用xib自定义UITableViewCell
使用xib自定义tableviewCell看一下效果图 1.自定义列 新建一个xib文件 carTblCell,拖放一个UITableViewCell,再拖放一个图片和一个文本框到tableviewc ...
- UITableViewCell的重用机制
UITabelView一般会显示大量数据,如果有多少条数据就新建多少个cell,那么对于内存来说是种极大的负担,这样自然是不合理的,所以才会有重用机制 比如一个家庭办酒席,一共有13桌,每桌20个菜, ...
- iOS UITableViewCell的"滑动出现多个按钮"
本文授权转载,作者:@夏天是个大人了 前言: 本篇博客其实就是想介绍tableviewcell滑动的一些"事",昨天在逛github的时候看到的还挺有意思的三方库,简单用了一下感觉 ...
随机推荐
- 1004. Counting Leaves (30)
1004. Counting Leaves (30) A family hierarchy is usually presented by a pedigree tree. Your job is ...
- 卷土重来之staticHtml基础使用教程
前段时间发布了一个asp.net生存html缓存的东西,老实说坑了蛮多的人,bug比较多, 经过这段时间的测试与改进,应该到了可以使用的地步了, 欢迎大家测试与使用,下面我介绍使用教程,对了,这里感谢 ...
- nginx 支持laravel 5.3配置
server { listen ; server_name www.baidu.com.cn; root /data/cehuiren/public; #charset koi8-r; #access ...
- commons-io ProxyInputStream,ProxyOutputStream,ProxyReader,ProxyWriter
1.ProxyInputStream: A Proxy stream which acts as expected, that is it passes the method calls on to ...
- restassured - JsonPath
https://github.com/rest-assured/rest-assured/blob/master/json-path/src/test/java/io/restassured/path ...
- 遇到 java.io.EOFException 异常的解决办法
可以试着clean项目后再启动!原因未明
- Sprint1(第四天11.17)
Sprint1第一阶段 1.类名:软件工程-第一阶段 2.时间:11.14-11.23 3.选题内容:web版-餐厅到店点餐系统 4.团队博客地址: http://www.cnblogs.com/qu ...
- 深入浅出Mybatis系列(六)---objectFactory、plugins、mappers简介与配置
上篇文章<深入浅出Mybatis系列(五)---TypeHandler简介及配置(mybatis源码篇)>简单看了一下TypeHandler, 本次将结束对于mybatis的配置文件的学习 ...
- iOs基础篇(二十二)—— UIPickerView、UIDatePicker控件的使用
一.UIPickerView UIPickerView是一个选择器控件,可以生成单列的选择器,也可生成多列的选择器,而且开发者完全可以自定义选择项的外观,因此用法非常灵活. 1.常用属性 (1)num ...
- Android笔记——在布局文件中插入另一个布局文件
假如有一个布局文件A.xml想把另外一个布局文件B.xml引进其布局,则可以通过下面的代码 <include layout="@layout/B" />