tableView

tableView是我们做项目最常用的一个组件了,它的功能也非常的多。近期整理了自己曾经的笔记,现归纳总结分享给大家,有不足望指正修改。

1、通过tag在cellForRowAtIndexPath中获取当前cell内的控件
let label = cell.viewWithTag(1000) as! UILabel

2、ios7以后,防止tableView留白问题,在viewDidLoad里面设置
self.automaticallyAdjustsScrollViewInsets = NO

3、去除选中背景
self.tableView.allowsSelection = NO

4、去除分割线
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone
去掉多余的分割线,设置下面的就行了
UITableView的tableFooterView = UIView()

5、选中cell的状态抬起后消失
tableView.deselectRowAtIndexPath(indexPath, animated: true)
设置cell不可选中
cell.selectionStyle = UITableViewCellSelectionStyleNone
摆脱选中单元格时出现蓝色显示
self.tableView.allowsSelection = NO

6、禁止tableView滚动
tableview.userInteractionEnabled = false

tableView.scrollEnabled = false

7、让tableView上层的View隐藏
[firstViewsetHidden:YES];

8、设置cell的选择标记

if cell.accessoryType == .None {
   cell.accessoryType = .Checkmark
}else{
  cell.accessoryType = .None
}

9、去掉cell右边的箭头
cell.accessoryType = UITableViewCellAccessoryNone
设置右侧箭头
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator

10、返回当前显示的数组
tableView.visibleCells

11、根据cell获取对应的row
let indexPaths:NSIndexPath = tableView.indexPathForCell(cell)!
获取当前的cell
let btnPos:CGPoint = sender.convertPoint(CGPointZero, toView: self.tableView)
let indexPath:NSIndexPath = self.tableView.indexPathForRowAtPoint(btnPos)!

12、滚动条的偏移量
self.tableView.scrollIndicatorInsets = UIEdgeInsetsMake(0, 0, 49, 0)

13、设置HeadView随着cell一起滚动
将table设置为UITableViewStyleGrouped类型。tableView中的headView就可以table滚动。

14、自适应高度
第一步
super.viewDidLoad()
tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension
第二步
设置label的约束,记得不要设置高度,把lines设为0
第三步
在Content Hugging Priority里修改Vertical为250

15、动态会变化的cell
cell.updateConstraintsIfNeeded()

16、半透明的tableview
self.modalPresentationStyle = .Custom

17、默认选中cell
NSIndexPath *ip = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:ip animated: YES scrollPosition: UITableViewScrollPositionBottom]

标记、移动、删除、插入

1、标记

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    UITableViewCell *cellView = [tableView cellForRowAtIndexPath:indexPath];  
    if (cellView.accessoryType == UITableViewCellAccessoryNone) {  
        cellView.accessoryType=UITableViewCellAccessoryCheckmark;  
    } else {  
    cellView.accessoryType = UITableViewCellAccessoryNone;  
    [tableView deselectRowAtIndexPath:indexPath animated:YES];  
    }  
} 
UITableViewCellAccessoryCheckmark                         
UITableViewCellAccessoryDetailDisclosureButton
UITableViewCellAccessoryDisclosureIndicator  
UITableViewCellAccessoryNone

2、移动
实现移动单元格就需要把单元格的编辑属性设置为YES,[tableView setEditing:YES animated:YES];

//返回YES,表示支持单元格的移动  
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    return YES;  
} 
 //单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格  
 -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    return UITableViewCellEditingStyleInsert;  
}
UITableViewCellEditingStyleDelete               
UITableViewCellEditingStyleInsert
UITableViewCellEditingStyleNone

// 实现移动的方法
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath  
{  
//    需要的移动行  
    NSInteger fromRow = [sourceIndexPath row];  
//    获取移动某处的位置  
    NSInteger toRow = [destinationIndexPath row];  
//    从数组中读取需要移动行的数据  
    id object = [self.listData objectAtIndex:fromRow];  
//    在数组中移动需要移动的行的数据  
    [self.listData removeObjectAtIndex:fromRow];  
//    把需要移动的单元格数据在数组中,移动到想要移动的数据前面  
    [self.listData insertObject:object atIndex:toRow];    
}

3、删除
首先是判断(UITableViewCellEditingStyle)editingStyle

  //单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格  
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath  {  
   return UITableViewCellEditingStyleDelete;  
 }  

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath  
{  
   if (editingStyle==UITableViewCellEditingStyleDelete) {  
  //        获取选中删除行索引值  
        NSInteger row = [indexPath row];  
 //        通过获取的索引值删除数组中的值  
        [self.listData removeObjectAtIndex:row];  
 //        删除单元格的某一行时,在用动画效果实现删除过程  
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];  
   }  
}

4、插入(添加)
实现方法和删除方法相同,首先还是返回单元格编辑风格

//单元格返回的编辑风格,包括删除 添加 和 默认  和不可编辑三种风格  
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath  
{  
     return UITableViewCellEditingStyleInsert;  
}
 // 为了显示效果明显,在.h文件中声明一个变量i
    NSInteger i;  
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    if (editingStyle==UITableViewCellEditingStyleDelete) {  
//        获取选中删除行索引值  
        NSInteger row = [indexPath row];  
//        通过获取的索引值删除数组中的值  
        [self.listData removeObjectAtIndex:row];  
//        删除单元格的某一行时,在用动画效果实现删除过程  
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];  
    }  
    if(editingStyle==UITableViewCellEditingStyleInsert)  
    {  
         
        i=i+1;  
        NSInteger row = [indexPath row];  
        NSArray *insertIndexPath = [NSArray arrayWithObjects:indexPath, nil];  
        NSString *mes = [NSString stringWithFormat:@"添加的第%d行",i];  
//        添加单元行的设置的标题  
        [self.listData insertObject:mes atIndex:row];  
        [tableView insertRowsAtIndexPaths:insertIndexPath withRowAnimation:UITableViewRowAnimationRight];  
    }  
}  
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容

  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 8,985评论 3 38
  • 1、UITableViewDataSource数据源方法 // 返回第section组中有多少行 -(NSInte...
    小杨的app阅读 1,464评论 0 1
  • 让我们共同学习一下tableView联动,我这也是从简书上看来的一篇文章,来亲自实现一下。学习文章地址:http:...
    麦穗0615阅读 3,821评论 4 55
  • 让我们共同学习一下tableView联动,我这也是从简书上看来的一篇文章,来亲自实现一下。学习文章地址:http:...
    搬砖行家阅读 300评论 0 1
  • 蓝翔技师廖勋钦?高级工学校办学31年,累计为社会培养各类各层次技能人才40余万,其中成功创业的中小微企业以数万计。...
    此寡百都鼐chuil阅读 206评论 0 0