0

我正在做一些看起来像 iPad Notes 应用程序的笔记列表的东西:一个经典的表格视图,但底部有一个角,如下所示:

所以为了查看列表的底部,滚动视图有点特殊。

最好的方法是什么?

非常感谢。

4

1 回答 1

2

我认为最简单的方法是使用 heightForFooterInSection 为最后一部分设置页脚高度。

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
if (section==[mySections count]) {
    return 120;
}
return 0;

}

于 2013-01-03T15:18:05.070 回答