我试图制作一个在其末尾有空格的tableview,以便用户可以向上滚动更多并显示更多焦点的最后一个单元格。这可能吗?
答案 0 :(得分:1)
答案是肯定的:tableFooterView
,但你永远不需要。
以下是如何使用tableFooterView
的示例:
CGRect frame = CGRectMake(0, 0, 320, 40);
UIView *view = [[UIView alloc] initWithFrame:frame];
// configure view as needed
self.tableView.tableFooterView = view;
您应该注意的是contentInset
:
self.tableView.contentInset = UIEdgeInsetsMake(0.0, 0.0, 40.0, 0.0)];
希望有所帮助。