我想做像下面的图片。
我该怎么做才能这样使用?
是下面这个方法吗?
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
谢谢。
我想做像下面的图片。
我该怎么做才能这样使用?
是下面这个方法吗?
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
谢谢。
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UIView *footer = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 540, 10)];
footer.backgroundColor = [UIColor clearColor];
UILabel *lbl = [[UILabel alloc]initWithFrame:footer.frame];
lbl.backgroundColor = [UIColor clearColor];
lbl.text = @"Your Text";
lbl.textAlignment = NSTextAlignmentCenter;
[footer addSubview:lbl];
return footer;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
return 10.0;
}
我宁愿把它放进去,viewDidLoad()
否则它会产生一种我不喜欢的浮动效果。这是我的快速解决方案
let footerView = UIView(frame:CGRectMake(0,0,self.view.frame.size.width,30))
footerView.backgroundColor = UIColor.clearColor()
let footerLabel = UILabel(frame: footerView.frame)
footerLabel.textColor = UIColor.flatGrayColor()
footerLabel.textAlignment = NSTextAlignment.Center
footerView.addSubview(footerLabel)
footerLabel.text="\(self.items.count) Items";
self.tableView.tableFooterView=footerView