我正在做的事情看起来像iPad Notes应用程序的笔记列表:经典的桌面视图,但底部有一个角落,如下所示:
因此,为了查看列表的底部,滚动视图有点特殊。
最好的方法是什么?
非常感谢。
答案 0 :(得分:2)
我认为最简单的方法是使用heightForFooterInSection为上一个部分设置页脚高度。
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
if (section==[mySections count]) {
return 120;
}
return 0;
}