博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios 更改UITableview group形式 两个section之间的距离
阅读量:5309 次
发布时间:2019-06-14

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

-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section{    return 1.0;}-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section{    return 1.0;}-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section{    return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];}-(UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section{    return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];}

 

转载于:https://www.cnblogs.com/lihaibo-Leao/p/3478507.html

你可能感兴趣的文章
HTML基础
查看>>
声明式和命令式
查看>>
vs 中怎么用c改变部分字体颜色
查看>>
《那些年啊,那些事——一个程序员的奋斗史》——110
查看>>
Linux 安装 soap Pear & net_dime
查看>>
20个真棒的jquery和css打造的图片动画效果(网站背景随时变换,广告牌效果..)...
查看>>
Java框架-Spring MVC理解005-DispatcherServlet
查看>>
自动生产jason的工具
查看>>
面向对象
查看>>
第十九章 代码重用 3类书类
查看>>
Java之工厂模式
查看>>
eclipse原文件编码GBK-UTF8
查看>>
android 下的网络图片加载
查看>>
多线程编程
查看>>
Discuz! X 数据库转码方案及使用工具
查看>>
Hive tuning tips
查看>>
分治----归并统计逆序对
查看>>
spyder快捷键
查看>>
Python全栈工程师 (类变量、方法、继承、覆盖)
查看>>
python 字符串split()方法
查看>>