【发布时间】:2012-09-15 14:25:07
【问题描述】:
table 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;
}
【问题讨论】:
标签: iphone uitableview footer