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的时候看到的还挺有意思的三方库,简单用了一下感觉 ...
随机推荐
- 使用扫描二维码打开app
应该不少人遇到过这种需求,扫描二维码打开app如果用户没有这个app则提示它跳转. 用网页直接来调用app是不打可能的,必须原生那边先做一些配置. 首先,安卓和苹果的调用方法是不同的. 所以我们需要先 ...
- 解决IIS上无法添加.NET用户的问题
最近开发了一个简单的管理后台,后台用户管理都用的是AspNetSqlMembershipProvider这一套框架,添加和删除用户的功能在开发阶段通过ASP.NET网站管理工具完成. 部署到服务器上时 ...
- laravel 实现上传 excel
//导入电话号码 public function postTel(){ set_time_limit(0); ini_set('memory_limit','1024M'); $params = In ...
- Connection broken for id 62, my id = 70, error =
启动费zokeeper失败,报错如下:Connection broken for id 62, my id = 70, error = 原因是因为zoo.cfg中server.id不正确. serve ...
- 转:Linux内部的时钟处理机制全面剖析
Linux内部的时钟处理机制全面剖析 在 Linux 操作系统中,很多活动都和时间有关,例如:进程调度和网络处理等等.所以说,了解 Linux 操作系统中的时钟处理机制有助于更好地了解 Linux 操 ...
- 常见的JavaScript函数
JavaScript函数一共可分为5类:常规函数.数组函数.日期函数.数学函数和字符串函数. (1)常规函数(9个) alert函数:显示一个警告对话框,包括一个“确定”按钮. confirm函数:显 ...
- json和jsonp(json是目的,jsonp是手段)
自己理解:JSON是一种数据交换格式,而JSONP是一种依靠开发人员的聪明才智创造出的一种非官方跨域数据交互协议.我们拿最近比较火的谍战片来打个比方,JSON是地下党们用来书写和交换情报的" ...
- 3d旋转
<!DOCTYPE html><html lang="zh-cmn-Hans"><head><meta charset="utf ...
- Mindmanager安装
- python 筛选股票
x[0] = '0' or x[0]='6' or x[0]='3' len(x)=6 x.isdigit() *但是有的债券也是6位 *比如010007.IB