1

我像这样设置我的 tableView 的 tableFooterView:

UIView *footerView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setFrame:CGRectMake(10, 10, footerView.bounds.size.width - 20, 44)];
[button setBackgroundImage:[UIImage imageNamed:@"addItemButton.png"] forState:UIControlStateNormal];
[button addTarget:self action:@selector(add) forControlEvents:UIControlEventTouchUpInside];
[footerView addSubview:button];
self.tableView.tableFooterView = footerView;

但是,当我滚动到表格视图的最底部时,我的按钮被切断了。

如何确保显示整个按钮?

4

1 回答 1

2

问题没有说明按钮是否被滚动视图剪切得不够向下。但如果是这种情况,您必须更改 UITableViews (UIScrollView) contentsize。

CGSize wholesize =  self.tableView.contentSize;

wholesize.height = self.tableView.contentSize.height + self.tableView.tableFooterView.frame.size.height;

self.tableView.contentSize = wholesize;

希望有帮助。

于 2012-08-31T07:28:23.623 回答