表格页脚的大小没有增加,似乎默认情况下是固定的。我们怎样才能改变它?我正在为此使用下面提到的代码,但它不起作用。任何人都可以帮助我吗?提前致谢。
- (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;
}