Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一些看起来像 iPad Notes 应用程序的笔记列表的东西:一个经典的表格视图,但底部有一个角,如下所示:
所以为了查看列表的底部,滚动视图有点特殊。
最好的方法是什么?
非常感谢。
我认为最简单的方法是使用 heightForFooterInSection 为最后一部分设置页脚高度。
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { if (section==[mySections count]) { return 120; } return 0;
}