表视图下方的工具栏

时间:2011-06-09 11:52:38

标签: iphone objective-c cocoa-touch

我需要一些聪明的提示:)

我需要在包含表格视图的页面中添加工具栏。如果表格没有填满整个页面,我需要将工具栏放在页面底部,但如果表格比页面长,我需要将工具栏放在表格的末尾。

怎么办?! :/

非常感谢您的帮助, 斯坦

1 个答案:

答案 0 :(得分:1)

使用UITableViewDelegate ....的页脚视图。

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section

只需从中返回一个视图,它就会放在指定部分的底部(单个部分或最后一个部分)。

也可以使用..

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section

告诉表视图视图的高度。