码迷,mamicode.com
首页 > 移动开发 > 详细

iOS tableView全面详解

时间:2016-08-20 13:15:18      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

 //显示有多少组

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 

//显示每组的头部

-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

//显示每组的尾部

-(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section

//显示每组的尾部标题有多高

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

      return CGFLOAT_MIN;

}

//显示每组的头部标题有多高

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

{

      return CGFLOAT_MIN;

}

//显示每组头标题名称

-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

//显示每组尾标题名称

-(NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section

//显示每组标题索引

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView

//显示每组有多少行

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 

//显示每组的行高

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

//显示内容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

 //打开或关闭编辑功能

    if ([self.table isEditing]) {

        [self.table setEditing:NO animated:YES];

    }else{

        [self.table setEditing:YES animated:YES];

    }

//对应的行是否可以被编辑

-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 

//设置编辑风格

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCellEditingStyleNone,

    UITableViewCellEditingStyleDelete,删除

    UITableViewCellEditingStyleInsert添加

}

 

//提交编辑(左滑删除和添加)

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    

    if (editingStyle == UITableViewCellEditingStyleDelete) {//删除

        [self.serviceArry removeObjectAtIndex:indexPath.row];

        [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];//删除刷新

    }

    else if (editingStyle == UITableViewCellEditingStyleInsert) {//添加

       [datas insertObject:@"ab" atIndex:indexPath.row];

    [self.table insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];//添加刷新

 

    }

}

//设置是否可以移动

-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath

//提交移动结果

-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{

    //先把要移动的数据保存

    id moveObj = [datas objectAtIndex:sourceIndexPath.row];

    //从数组中删除要移动的数据

    [datas removeObjectAtIndex:sourceIndexPath.row];

    //把要移动的数据插入到目标位置

    [datas insertObject:moveObj atIndex:destinationIndexPath.row];

}

     

//每行的点击事件

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

iOS tableView全面详解

标签:

原文地址:http://www.cnblogs.com/hongyan1314/p/5790166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!