时间:2021-05-02
整理文档,搜刮出一个ios中cell的section展开和收起的示例代码,稍微整理精简一下做下分享。
首先,先上图,让大家看看效果
相信大家对于tableviewd数据的设置都熟悉,这方面就不多说的,重点的还是来看:
1.如何实现cell的section的展开和收起的效果
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 - (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath { [self.tableview deselectrowatindexpath:indexpath animated:no]; currentrow = indexpath.row; nsdictionary *sectiondic = self.datasource[indexpath.section]; nsarray *cellarray = sectiondic[@"sub"]; //cell当前的数据 nsdictionary *celldata = cellarray[indexpath.row]; nsstring *key = [nsstring stringwithformat:@"%@", celldata[@"chapterid"]]; cellmodel *chaptermodel = [self.cellopen valueforkey:key]; chaptermodel.isshow = !chaptermodel.isshow; [self.tableview reloadrowsatindexpaths:@[indexpath] withrowanimation:uitableviewrowanimationautomatic]; }当用户点击到某一个cell时候,需要判断cell是否是展开状态,如果张开或者收起就调用
复制代码 代码如下:让cell的section能够重新加载刷新;
2.如何添加cell的section
2.1设置section的高度
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 - (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath { nsdictionary *sectiondic = self.datasource[indexpath.section]; nsarray *cellarray = sectiondic[@"sub"]; //cell当前的数据 nsdictionary *celldata = cellarray[indexpath.row]; nsstring *key = [nsstring stringwithformat:@"%@", celldata[@"chapterid"]]; cellmodel *model = [self.cellopen valueforkey:key]; if (model.isshow) { return (model.pois.count+1)*60; } else { return 60; } }上面的代码是设置section的高度,主要是以cell的isshow作为标记,让section的能够随数据的改变而变动
3.如果要在一个cell上再加一个cell,实现cell内嵌cell,需要在哪里加?
答案:当然是在cell的headersection或者footersection上加上cell,这样就能实现cell内嵌cell。
好了,说了那么多,估计大家还是喜欢看demo,以下是demo的链接:https://github.com/xiaojin1123/sectionopenandclose.git
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/e03bc5c30eba
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、组件效果预览其实效果和之前的那个差不多,博主只是在之前的基础上加了一个选中的背景色。全部收起展开全部展开二、代码示例其实效果很简单,重点来看看代码是如何实现
本文实例为大家分享了小程序实现列表展开收起的具体代码,供大家参考,具体内容如下效果:原理:利用AppData值+显示隐藏的样式,进行展开收起。wxml:{{is
由于文章内容的限制,我们接着在上文的内容展开,上文的方案中还是存在一个问题的,如果我们展开了多个section,并且展开的section不在屏幕上面,当我们滑动
最近又做了一个项目,涉及到二级菜单及cell的展开收起,这是我所做过的第三个项目中做这个功能了,我当然不能把公司的项目界面show出来,所以我重新创建一个工程,
IOSTextFiled与TextView键盘的收起以及处理键盘遮挡在iOS开发中,UITextFiled和UITextView是很常见的两个控件,当我们设置好