博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tableview当对应组的数据展示完后对应的section的头部或尾部才消失
阅读量:6517 次
发布时间:2019-06-24

本文共 945 字,大约阅读时间需要 3 分钟。

  hot3.png

要达到当对应组的数据展示完成后,对应组的组头部/尾部才随本组的数据滚动消失的效果,此时,tableviwe必须是动态单元格:UITableViewStylePlain,静态单元格UITableViewStyleGrouped不会有这种动态效果的。即代码创建tableview 时,一定使用

  UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];

用storyboard创建时,一定使用Content选择为Dynamic Prototypes(即动态),不是选择Static Cells.

组的头部 /尾部的方法:

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

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

 

- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;   // custom view for header. will be adjusted to default or specified header height

- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;   // custom view for footer. will be adjusted to default or specified footer height

 

转载于:https://my.oschina.net/llfk/blog/806065

你可能感兴趣的文章
《计算机系统:核心概念及软硬件实现(原书第4版)》——3.7 总结
查看>>
Google开源Inception-ResNet-v2,提升图像分类水准
查看>>
Opera 出售细节曝光:昆仑出资1.68亿美元
查看>>
CentOS 5.3 下快速安装配置 PPTP ××× 服务器
查看>>
产品经理学习总结之技术和设计篇
查看>>
23种设计模式(15):备忘录模式
查看>>
java基础学习总结——IO流
查看>>
iOS获取APP ipa 包以及资源文件
查看>>
类加载器总结
查看>>
[1298]活动选择 山东理工OJ
查看>>
Spring Cloud Hystrix java.lang.NoClassDefFoundError: org/aspectj/lang/JoinPoint 问题
查看>>
Go语言中通过结构体匿名字段实现方法的继承和重载
查看>>
select into 和 insert into select 两种表复制语句
查看>>
LOJ 117 有源汇有上下界最小流
查看>>
数组遍历——Vue.js
查看>>
linux提权辅助脚本(更新exp列表)
查看>>
IBATIS 写BLOB字段遇到的问题
查看>>
Java集合--Map
查看>>
Dev gridControl 按回车增加一行
查看>>
Reapte控件的使用
查看>>