桌面尺寸在uitableview中没有增加

时间:2012-09-24 06:14:31

标签: iphone uitableview footer

表格页脚的大小没有增加,看起来默认是固定的。我们怎样才能改变它? 我使用下面提到的代码,但它不起作用。任何人都可以帮助我吗?在此先感谢。

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

    UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)] autorelease];
    view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blue-bg.jpg"]];
    return view;

}

2 个答案:

答案 0 :(得分:1)

在您确认UITableViewDelegate的.h文件中,您可以按下命令按钮,然后单击UITableViewDelegate,它将转到协议,您可以在其中找到可用于自定义表的所有相关方法视图。 是的,如何做到这一点的方式已经得到了解答。祝好运!!干杯!!

答案 1 :(得分:0)

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return 50;
}