自定义单元格
表格无论有多少中自定义单元格样式 每一种自定义单元格都有复用的能力
所以每一个单元格都要带有一个静态局部变量作为唯一标识
自定义单元格纯手写的
需要在自定义单元格类中重写-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier方法,并且把所有要创建的控件定义在其中
方式一:直接在cellForRowAtIndexPath中实现并判断
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString * string = @"custom";
FirstTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:string];
if (cell == nil) {
cell = [[FirstTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:string];
}
cell.nameLabel.text = dataSource[indexPath.row][@"personName"];
cell.phoneLabel.text = dataSource[indexPath.row][@"phoneNum"];
return cell;
}
方式二:在创建表格/集合视图的时候调用registerClass: forCellWithReuseIdentifier:
方法,且在cellForRowAtIndexPath方法中不用判断为空,可直接重用/赋值
自定义单元格带有XIB文件的
//为表格添加单元格的方法有两种:
//<1>先注册单元格文件
[table registerNib:[UINib nibWithNibName:@"CustomTableViewCell" bundle:nil] forCellReuseIdentifier:@"string"];
此方法在你创建UITableView的时候使用
可以不设置xib上的indentifier属性值
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//单元格的标识上下必须完全相同
CustomTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"string"];
//此处不需要判断单元格是否为空因为上面的viewDidLoad方法中已经注册过单元格了 所以一定不会为空
cell.nameLabel.text = dataSource[indexPath.row][@"personName"];
cell.phoneLabel.text = dataSource[indexPath.row][@"phoneNum"];
return cell;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//<2>使用XIB定义单元格的第二种方法
static NSString * string = @"string";
//[注意]此处的静态局部变量的内容一定要和XIB文件中单元格的identifier属性的内容完全相同 使得cell能够重用 否则单元格会不断的创建 最终导致内存溢出/程序崩溃
CustomTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:string];
if(cell == nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"CustomTableViewCell" owner:self options:nil] lastObject];
}
cell.picImageView.image = [UIImage imageNamed:dataSource[indexPath.row][@"imageName"]];
cell.titleLabel.text = dataSource[indexPath.row][@"title"];
cell.contentLabel.text = dataSource[indexPath.row][@"content"];
cell.collectionLabel.text = dataSource[indexPath.row][@"collection"];
return cell;
}
扩展
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]
如果需要使用这个方法,你必须使用配套的方法来一起用,下面两个配套方法选其一:
- (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
- (void)registerClass:(Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
上述两个方法在你创建UITableView的时候调用
tableview使用
tableview刷新,移动到最后一行
[_tableView reloadData];
NSIndexPath * indexPath = [NSIndexPath indexPathForRow:_dataSource.count-1 inSection:0];
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
不断改变edit的编辑状态
[_tableView setEditing:editing animated:YES];
确定cell的编辑模式
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.section == 0) {
return UITableViewCellEditingStyleDelete;
}else
return UITableViewCellEditingStyleInsert;
}
//提交编辑的结果
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
//先删除数据源部分(先删除某一行)
//找到对应的组 再删除指定行
[_dataArray [indexPath.section]removeObjectAtIndex:indexPath.row];
//重新刷新所有的代理方法(方式一)
//[_tableView reloadData];
//从tableview中删除对应的行(方式二)
[_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];//从左方消失(动画)
}else{//插入
NSString * str = @"sdf";
//找到对应的组 再插入指定行
[_dataArray [indexPath.section]insertObject:str atIndex:indexPath.row];
[_tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationBottom];
}
}
//让cell可以移动
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
//更改数据源中的数据顺序
//先保存要移动的数据
NSString * number = [[_dataArray objectAtIndex:sourceIndexPath.section]objectAtIndex:sourceIndexPath.row];
[[_dataArray objectAtIndex:sourceIndexPath.section]removeObjectAtIndex:sourceIndexPath.row];
[[_dataArray objectAtIndex:destinationIndexPath.section]insertObject:number atIndex:destinationIndexPath.row];
}
//缩进
-(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
return indexPath.row;
}
//添加多个按钮
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewRowAction * deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
//实现方法
//从总数据源里删掉对应的数据
[_dataArray [indexPath.section]removeObjectAtIndex:indexPath.row];
//从表格里删除对应的行
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}];
UITableViewRowAction * singAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"标记" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
cell.backgroundColor = [UIColor redColor];
}];
UITableViewRowAction * topAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"置顶" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSString * str = [[_dataArray objectAtIndex:indexPath.section]objectAtIndex:indexPath.row];
[[_dataArray objectAtIndex:indexPath.section]removeObjectAtIndex:indexPath.row];
[[_dataArray objectAtIndex:indexPath.section]insertObject:str atIndex:0];
//刷新
[tableView reloadData];
}];
return @[deleteAction,singAction,topAction];
}
为表格添加搜索索引
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
NSMutableArray * array = [[NSMutableArray alloc]init];
for (int i = 'A'; i < 'Z'; i++) {
[array addObject:[NSString stringWithFormat:@"%c",i]];
}
return array;
}
动态设置单元格高度
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString * string = @"string";
CustomTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:string];
if(cell == nil)
{
cell = [[CustomTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:string];
}
计算动态desc的高度
CGRect rect = [subDataSource[indexPath.row] boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17]} context:nil];
cell.detailLabel.frame = CGRectMake(0, 80, [UIScreen mainScreen].bounds.size.width, rect.size.height);
NSLog(@"%f",cell.detailLabel.frame.size.height);
lable的坐标原点的坐标以及宽度一定要和自定义单元格上label的初始值完全相同 只有高度是动态的
CGRect rect = [subDataSource[indexPath.row] boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17]} context:nil];
cell.detailLabel.frame = CGRectMake(0, 80, [UIScreen mainScreen].bounds.size.width, rect.size.height);
return cell;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
//动态计算cell高度,固定高度+动态label的高度
NSString *desc = subDataSource[indexPath.row];
//计算动态desc的高度
CGRect rect = [desc boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17]} context:nil];
//100是固定高度 rect.size.height是计算得到的动态高度
return 80 + rect.size.height;
}
使用xib高度自适应时
//允许单元格自适应
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 44.0;
一个section刷新
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
一个cell刷新
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
//允许单元格自适应
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 44.0;